Skip to content

Commit

Permalink
fix: wait for docker image before releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
steveiliop56 committed Nov 27, 2024
1 parent 321178c commit 59916d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
tags: ghcr.io/${{ github.repository_owner }}/tipicord:${{ needs.get-tag.outputs.tag }}

alpha-release:
needs: [get-tag, build]
needs: [get-tag, build, build-docker]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
tags: ghcr.io/${{ github.repository_owner }}/tipicord:${{ needs.get-tag.outputs.tag }}

beta-release:
needs: [get-tag, build]
needs: [get-tag, build, build-docker]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
tags: ghcr.io/${{ github.repository_owner }}/tipicord:${{ needs.get-tag.outputs.tag }}, ghcr.io/${{ github.repository_owner }}/tipicord:latest

release:
needs: [get-tag, build]
needs: [get-tag, build, build-docker]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
Expand Down

0 comments on commit 59916d7

Please sign in to comment.