mirror of
https://github.com/miaowware/qrm2.git
synced 2025-04-10 05:29:09 -04:00
fix issue with pushing docker images to ghcr
This commit is contained in:
parent
86ab415619
commit
be6c78f4de
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@ -57,7 +57,9 @@ jobs:
|
||||
[[ "$VERSION" != "dev" ]] && docker tag $IMAGE_NAME $IMAGE_ID:latest || true
|
||||
|
||||
- name: Push images to registry
|
||||
run: docker push ${{ steps.tag_image.outputs.image_id }}
|
||||
run: |
|
||||
[[ "${{ steps.tag_image.outputs.version }}" != "dev" ]] && docker push ${{ steps.tag_image.outputs.image_id }}:latest || true
|
||||
docker push ${{ steps.tag_image.outputs.image_id }}:${{ steps.tag_image.outputs.version }}
|
||||
|
||||
- name: Deploy official images
|
||||
id: deploy_images
|
||||
|
Loading…
Reference in New Issue
Block a user