Skip to content

Commit

Permalink
Merge pull request #4629 from unisonweb/stew-fix-docker-build
Browse files Browse the repository at this point in the history
define IMAGE_NAME for the docker build step
  • Loading branch information
mergify[bot] authored Jan 22, 2024
2 parents e7df7ce + d276799 commit 13c9716
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ jobs:
tar -c -z -f ucm-linux.tar.gz -C /tmp/ucm .
- name: build and push docker container
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
run: |
IMAGE_NAME=${{github.repository}}
docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to docker registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
Expand Down

0 comments on commit 13c9716

Please sign in to comment.