Modify settings for prod release. #20
Workflow file for this run
This file contains hidden or 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
| --- | |
| name: Tagged Release | |
| on: | |
| push: | |
| tags: | |
| - '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]' | |
| # mark as test allow additional releases within a day with | |
| # a marker after test. | |
| - '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]-[a-z]*' | |
| 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 |