Skip to content

Commit

Permalink
Add missing workflow dep for build-docker-image
Browse files Browse the repository at this point in the history
Add git workflow dispatch for manual building
  • Loading branch information
JamyGolden committed Jun 24, 2024
1 parent c8fa505 commit 6be524c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/push-ghcr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
git_tag_name:
required: true
type: string
workflow_dispatch:
inputs:
git_tag_name:
description: Git version tag (eg. v0.9.0)
required: true

jobs:
push-image:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ jobs:
checksum: sha256

build-docker-image:
needs: release
needs:
- setup-environment
- release
uses: ./.github/workflows/push-ghcr-image.yml
with:
git_tag_name: v${{ needs.setup-environment.outputs.git_tag_name }}
Expand Down

0 comments on commit 6be524c

Please sign in to comment.