forked from CollaboraOnline/online
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'CollaboraOnline:master' into copy-button-clipboard
Signed-off-by: Parth Raiyani <[email protected]> Change-Id: I3df4a8abbda83c456e953a36afb12a4bc2951296
- Loading branch information
Showing
1,338 changed files
with
235,810 additions
and
175,840 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ jobs: | |
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token | ||
permissions: | ||
contents: write | ||
packages: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
|
@@ -30,10 +31,76 @@ jobs: | |
with: | ||
version: v3.12.1 | ||
|
||
- name: Import GPG key | ||
run: | | ||
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --dearmor --output keyring.gpg | ||
echo "${{ secrets.GPG_PASSPHRASE }}" > passphrase-file.txt | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
# for use with make-release-latest | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
CR_SKIP_EXISTING: true | ||
CR_KEY: Collabora Productivity | ||
CR_KEYRING: keyring.gpg | ||
CR_PASSPHRASE_FILE: passphrase-file.txt | ||
CR_SIGN: true | ||
with: | ||
charts_dir: "kubernetes/helm" | ||
config: kubernetes/helm/cr.yaml | ||
config: kubernetes/helm/cr.yaml | ||
|
||
# see https://github.com/helm/chart-releaser/issues/183 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push charts to GHCR | ||
run: | | ||
shopt -s nullglob | ||
for pkg in .cr-release-packages/*; do | ||
if [ -z "${pkg:-}" ]; then | ||
break | ||
fi | ||
# Check if the package has a ".prov" extension and skip if true | ||
# prov doesn't need to be pushed they are already pushed as layer in manifest | ||
if [[ "${pkg}" == *.prov ]]; then | ||
echo "Skipping package - ${pkg} with '.prov' extension" | ||
continue | ||
fi | ||
# convert uppercase->lowercase to make sure it follows oci rules | ||
lowercase=$(echo "${GITHUB_REPOSITORY_OWNER}" | tr '[:upper:]' '[:lower:]') | ||
echo "Pushing package - ${pkg} to ghcr.io repository - ${lowercase}" | ||
helm push "${pkg}" "oci://ghcr.io/${lowercase}/charts" | ||
done | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Push charts to Docker Hub | ||
run: | | ||
shopt -s nullglob | ||
for pkg in .cr-release-packages/*; do | ||
if [ -z "${pkg:-}" ]; then | ||
break | ||
fi | ||
# Check if the package has a ".prov" extension and skip if true | ||
# prov doesn't need to be pushed they are already pushed as layer in manifest | ||
if [[ "${pkg}" == *.prov ]]; then | ||
echo "Skipping package - ${pkg} with '.prov' extension" | ||
continue | ||
fi | ||
echo "Pushing package - ${pkg} to docker.io repository - collabora" | ||
helm push "${pkg}" "oci://registry-1.docker.io/collabora" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.