diff --git a/.github/workflows/pr-images.yml b/.github/workflows/pr-images.yml index e17a5007..a4f3d9d0 100644 --- a/.github/workflows/pr-images.yml +++ b/.github/workflows/pr-images.yml @@ -20,7 +20,7 @@ jobs: environment: registry-creds permissions: packages: write - contents: read + contents: write attestations: write id-token: write @@ -163,7 +163,7 @@ jobs: git config --global user.email "${GITHUB_ACTOR}@users.noreply.${INPUT_ORGANIZATION_DOMAIN}" git add deploy/k8s/overlays/openshift/qa/kustomization.yaml git commit -m "[CI AUTOMATION]: Bumping QA UI image to tag: pr-${{ steps.get_pr_number.outputs.result }}" -s - git push origin main --force + git push origin main build_and_publish_ps_qa_image: name: Push QA pathservice container image to GHCR and QUAY @@ -171,7 +171,7 @@ jobs: environment: registry-creds permissions: packages: write - contents: read + contents: write attestations: write id-token: write @@ -314,4 +314,4 @@ jobs: git config --global user.email "${GITHUB_ACTOR}@users.noreply.${INPUT_ORGANIZATION_DOMAIN}" git add deploy/k8s/overlays/openshift/qa/kustomization.yaml git commit -m "[CI AUTOMATION]: Bumping QA PS image to tag: pr-${{ steps.get_pr_number.outputs.result }}" -s - git push origin main --force + git push origin main diff --git a/.github/workflows/release-images.yml b/.github/workflows/release-images.yml index 6ef6a042..5df4eb11 100644 --- a/.github/workflows/release-images.yml +++ b/.github/workflows/release-images.yml @@ -18,7 +18,7 @@ jobs: environment: registry-creds permissions: packages: write - contents: read + contents: write attestations: write id-token: write @@ -130,7 +130,7 @@ jobs: git config --global user.email "${GITHUB_ACTOR}@users.noreply.${INPUT_ORGANIZATION_DOMAIN}" git add deploy/k8s/overlays/openshift/prod/kustomization.yaml git commit -m "[CI AUTOMATION]: Bumping Prod UI image to tag: ${{ steps.get_release_tag.outputs.RELEASE_TAG }}" -s - git push origin main --force + git push origin main build_and_publish_ps_prod_image: name: Push UI container image to GHCR and QUAY @@ -138,7 +138,7 @@ jobs: environment: registry-creds permissions: packages: write - contents: read + contents: write attestations: write id-token: write @@ -250,4 +250,4 @@ jobs: git config --global user.email "${GITHUB_ACTOR}@users.noreply.${INPUT_ORGANIZATION_DOMAIN}" git add deploy/k8s/overlays/openshift/prod/kustomization.yaml git commit -m "[CI AUTOMATION]: Bumping Prod PS image to tag: ${{ steps.get_release_tag.outputs.RELEASE_TAG }}" -s - git push origin main --force + git push origin main