[automated] Merge branch 'main' => 'prerelease' (#8612) #3
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: Create GitHub Release | |
| on: | |
| push: | |
| tags: | |
| - 'v2.*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| # This job runs against the yaml defined in the tag we were triggered on. | |
| # So we can modify the release creation without having to wait for the change to flow into the commit | |
| # that we're tagging, we call a reusable workflow from main | |
| create-release: | |
| uses: dotnet/vscode-csharp/.github/workflows/release-reusable.yml@main | |
| with: | |
| tag: ${{ github.ref_name }} | |
| secrets: inherit |