Merge pull request #5031 from Particular/john/patch #2937
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: Release | |
| on: | |
| push: | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| - '[0-9]+.[0-9]+.[0-9]+-*' | |
| env: | |
| DOTNET_NOLOGO: true | |
| jobs: | |
| windows-installers: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: ./.github/workflows/build-windows.yml | |
| secrets: inherit | |
| containers: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: ./.github/workflows/build-containers.yml | |
| secrets: inherit | |
| db-container: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: ./.github/workflows/build-db-container.yml | |
| secrets: inherit |