Skip to content

Commit

Permalink
Go
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Vasseur committed Jan 13, 2024
1 parent 24550a6 commit f060973
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-domjudge-container-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
- name: Build and push
run: |
for IMG in domserver judgehost default-judgehost-chroot; do
docker image tag ${{ github.actor }}/$IMG:${{ env.DOMJUDGE_VERSION }} ghcr.io/${{ github.actor }}/$IMG:${{ env.PR_TAG }}
IMAGE_NAME="${{ github.actor }}/$IMG:${{ env.DOMJUDGE_VERSION }}"
docker image tag "$IMAGE_NAME" ghcr.io/${{ github.actor }}/$IMG:${{ env.PR_TAG }}
docker image tag "$IMAGE_NAME" ${{ github.actor }}/$IMG:${{ env.PR_TAG }}
docker push ghcr.io/${{ github.actor }}/$IMG:${{ env.PR_TAG }}
done
Expand Down

0 comments on commit f060973

Please sign in to comment.