Skip to content

Commit

Permalink
fix(docker): moved docker release workflow under release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Oct 5, 2023
1 parent 08f5a2d commit 64be636
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ jobs:
needs: release_please
if: ${{needs.release_please.outputs.release_created}}
steps:
- run: echo major ${{needs.release_please.outputs.major}}
- run: echo minor ${{needs.release_please.outputs.minor}}
- run: echo patch ${{needs.release_please.outputs.patch}}
- run: echo version v${{needs.release_please.outputs.major}}.${{needs.release_please.outputs.minor}}.${{needs.release_please.outputs.patch}}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -80,6 +79,6 @@ jobs:
platforms: ${{ steps.buildx.outputs.platforms }}
push: true
tags: |
${{ github.repository }}:{{steps.release.outputs.major}}.{{steps.release.outputs.minor}}.{{steps.release.outputs.patch}}
${{ github.repository }}:{{steps.release.outputs.major}}.{{steps.release.outputs.minor}}
${{ github.repository }}:{{steps.release.outputs.major}}
${{ github.repository }}:${{needs.release_please.outputs.major}}.${{needs.release_please.outputs.minor}}.${{needs.release_please.outputs.patch}}
${{ github.repository }}:${{needs.release_please.outputs.major}}.${{needs.release_please.outputs.minor}}
${{ github.repository }}:${{needs.release_please.outputs.major}}

0 comments on commit 64be636

Please sign in to comment.