Skip to content

Commit

Permalink
remove condition for image signing
Browse files Browse the repository at this point in the history
we don't need it any more since we're using true multi-arch builds now.

Signed-off-by: Dan Urson <[email protected]>
  • Loading branch information
notdurson committed Jan 20, 2025
1 parent e23ae2f commit b01401f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/atlantis-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
- name: "Sign images with environment annotations"
# no key needed, we're using the GitHub OIDC flow
# Only run on alpine/amd64 build to avoid signing multiple times
if: env.PUSH == 'true' && github.event_name != 'pull_request' && matrix.image_type == 'alpine' && matrix.platform == 'linux/amd64'
if: env.PUSH == 'true' && github.event_name != 'pull_request'
run: |
# Sign dev tags, version tags, and latest tags
echo "${TAGS}" | xargs -I {} cosign sign \
Expand Down

0 comments on commit b01401f

Please sign in to comment.