Skip to content

Commit

Permalink
Build: fixed docker tag upload
Browse files Browse the repository at this point in the history
  • Loading branch information
marcanpilami committed Oct 2, 2022
1 parent b5ff365 commit ab19f08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -94,7 +94,7 @@ jobs:

- name: Build and push Docker image
if: ${{ steps.docker_tag.outputs.value == 'nightly' }}
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
tags: enioka/mage:${{ steps.docker_tag.outputs.value }}
Expand All @@ -105,10 +105,10 @@ jobs:
# Make use of the cache if it's release
- name: Build and push Docker image
if: ${{ steps.docker_tag.outputs.value != 'nightly' }}
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
tags: ${{ steps.docker_tag.outputs.value }}
tags: enioka/mage:${{ steps.docker_tag.outputs.value }}
context: .
file: ./docker/Dockerfile
push: true
Expand Down

0 comments on commit ab19f08

Please sign in to comment.