Skip to content

Commit

Permalink
Add manual workflow to trigger release image
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazoyer committed Feb 9, 2024
1 parent 8127adf commit 3304aed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 5
outputs:
ci: ${{ steps.changes.outputs.ci }}
composer: ${{ steps.changes.outputs.composer}}
composer: ${{ steps.changes.outputs.composer }}
php: ${{ steps.changes.outputs.php }}
steps:
- name: Checkout
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
release:
types:
- published
workflow_dispatch:
inputs:
tag_name:
required: true
type: string


jobs:
build:
Expand All @@ -12,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
ref: ${{ github.event.inputs.tag_name || github.event.release.tag_name }}

- name: Build Docker image tags
uses: docker/metadata-action@v5
Expand Down

0 comments on commit 3304aed

Please sign in to comment.