-
Notifications
You must be signed in to change notification settings - Fork 16
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.
- Loading branch information
1 parent
c98df7c
commit 05870d3
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 |