diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27b76d0b4..24a19ef44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,21 +101,3 @@ jobs: if: ${{ always() }} run: | docker logout ${{ steps.login-ghcr.outputs.registry }} ---- -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 diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml new file mode 100644 index 000000000..09eb39f1d --- /dev/null +++ b/.github/workflows/tagged-release.yml @@ -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