Skip to content

Commit

Permalink
ci(github): fix missing newline continuation characters
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Jan 8, 2024
1 parent 545a2ca commit fa83f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
cosign --verbose=true sign --yes --key cosign.key \
-a "repo=${{ github.repository }}"
-a "ref=${{ github.ref }}"
-a "repo=${{ github.repository }}" \
-a "ref=${{ github.ref }}" \
${{ env.REGISTRY }}/${{ env.IMAGE }}:${{ steps.push_image.outputs.digest }}
env:
COSIGN_PASSWORD: ${{ secrets.COSIGN_PWD }}

0 comments on commit fa83f0d

Please sign in to comment.