-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tagged release job to it's own yaml file. (#980)
Immediately discovered that you can't have two job sets in the same yaml file... apparently I've been doing too much kubernetes work where multiple yaml blocks are rather common.
- Loading branch information
1 parent
631ac79
commit 420bebb
Showing
2 changed files
with
18 additions
and
18 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
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,18 @@ | ||
--- | ||
name: Tagged Release | ||
on: | ||
push: | ||
tags: | ||
- '[0-9][0-9][0-9][0-9].[09][0-9].[0-9]' | ||
- '[0-9][0-9][0-9][0-9].[09][0-9].[0-9]-*+' | ||
jobs: | ||
release: | ||
uses: ./.github/workflows/release.yml | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
registry: ${{ secrets.HEC_PUB_REGISTRY}} | ||
registry_user: ${{ secrets.ALT_REG_USER }} | ||
registry_password: ${{ secrets.ALT_REG_PASSWORD }} | ||
with: | ||
branch: ${{github.ref_name}} | ||
nightly: false |