-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): trigger nextstrain/docker-base rebuild on release (#1505)
Co-authored-by: Victor Lin <[email protected]>
- Loading branch information
1 parent
518fe3d
commit 31c64b3
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Trigger rebuild in https://github.com/nextstrain/docker-base | ||
name: nextstrain-docker-base | ||
|
||
on: | ||
release: | ||
types: | ||
- released | ||
|
||
concurrency: | ||
group: nextstrain-docker-base-${{ github.workflow }}-${{ github.ref_type }}-${{ github.event.pull_request.number || github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: bash -euxo pipefail {0} | ||
|
||
env: | ||
GITHUB_REPOSITORY_URL: ${{ github.server_url }}/${{ github.repository }} | ||
VERBOSE: 1 | ||
|
||
jobs: | ||
|
||
trigger-build-nextstrain-docker-base: | ||
name: "Trigger build in nextstrain/docker-base" | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- run: gh workflow run ci.yml --repo nextstrain/docker-base | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_NEXTSTRAIN_BOT_WORKFLOW_DISPATCH }} |