Skip to content

Commit

Permalink
chore: Switch release flow to use make dockerx-build-push
Browse files Browse the repository at this point in the history
  • Loading branch information
smuda committed May 8, 2024
1 parent a145ea0 commit e53f84c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/push_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: docker build
run: make docker-build version=${TAG_NAME}
run: >-
docker buildx create --name builder &&
docker buildx use --builder builder &&
make dockerx-build-push version=${TAG_NAME}
- name: docker push
run: make docker-push version=${TAG_NAME}

0 comments on commit e53f84c

Please sign in to comment.