We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c0538e commit 5b6cadaCopy full SHA for 5b6cada
1 file changed
.github/workflows/publish_docker_images.yml
@@ -53,11 +53,11 @@ jobs:
53
with:
54
registry: ghcr.io
55
username: ${{ github.actor }}
56
- password: ${{ secrets.COMMITTER_TOKEN }}
+ password: ${{ secrets.GITHUB_TOKEN }}
57
- name: Convert to lowercase
58
run: |
59
- echo "LATEST_TAG=ghcr.io/${{ github.repository }}/opensca-cli:latest" | tr '[:upper:]' '[:lower:]' >> ${GITHUB_ENV}
60
- echo "VERSION_TAG=ghcr.io/${{ github.repository }}/opensca-cli:${{ env.VERSION }}" | tr '[:upper:]' '[:lower:]' >> ${GITHUB_ENV}
+ echo "LATEST_TAG=ghcr.io/${{ github.repository }}/opensca-cli:latest" >> ${GITHUB_ENV}
+ echo "VERSION_TAG=ghcr.io/${{ github.repository }}/opensca-cli:${{ env.VERSION }}" >> ${GITHUB_ENV}
61
- name: Print env variables
62
63
echo "LATEST_TAG=${{ env.LATEST_TAG }}"
0 commit comments