Skip to content

Commit

Permalink
docs: replace single dashes with two (#33)
Browse files Browse the repository at this point in the history
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
  • Loading branch information
developer-guy committed Nov 12, 2021
1 parent 0b834bf commit e5c096a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ jobs:
- name: Sign image with a key
run: |
echo ${COSIGN_KEY} > /tmp/my_cosign.key && \
cosign sign -key /tmp/my_cosign.key ${TAGS}
cosign sign --key /tmp/my_cosign.key ${TAGS}
env:
TAGS: ${{ steps.docker_meta.outputs.tags }}
COSIGN_KEY: ${{secrets.COSIGN_KEY}}
COSIGN_PASSWORD: ${{secrets.COSIGN_PASSWORD}}

- name: Sign the images with GitHub OIDC **not production ready**
run: cosign sign -oidc-issuer https://token.actions.githubusercontent.com ${TAGS}
run: cosign sign --oidc-issuer https://token.actions.githubusercontent.com ${TAGS}
env:
TAGS: ${{ steps.docker_meta.outputs.tags }}
COSIGN_EXPERIMENTAL: 1
Expand Down

0 comments on commit e5c096a

Please sign in to comment.