Skip to content

Commit

Permalink
Gh-349: Allow for manually running the release action (#350)
Browse files Browse the repository at this point in the history
Add option to manually run image release workflow
  • Loading branch information
GCHQDeveloper314 committed Mar 28, 2024
1 parent c152b72 commit f95fe88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ on:
milestone:
types:
- closed
workflow_dispatch:

jobs:
create-release-tag:
runs-on: ubuntu-latest

if: github.event_name == 'milestone'
outputs:
branch_name: ${{ steps.branch.outputs.branch_name }}

Expand Down Expand Up @@ -67,6 +68,7 @@ jobs:
update-branches:
runs-on: ubuntu-latest
if: github.event_name == 'milestone'
strategy:
matrix:
branch:
Expand Down Expand Up @@ -121,6 +123,7 @@ jobs:

create-release-notes:
runs-on: ubuntu-latest
if: github.event_name == 'milestone'
needs:
- create-release-tag
- update-branches
Expand Down Expand Up @@ -154,6 +157,7 @@ jobs:

upload-release-artifacts:
runs-on: ubuntu-latest
if: github.event_name == 'milestone'
needs:
- create-release-tag
- create-release-notes
Expand Down Expand Up @@ -201,6 +205,7 @@ jobs:

update-helm-repo:
runs-on: ubuntu-latest
if: github.event_name == 'milestone'
needs:
- upload-release-artifacts

Expand Down
Empty file modified cd/build_core_images.sh
100644 → 100755
Empty file.

0 comments on commit f95fe88

Please sign in to comment.