fix: Avoid modifying augmented graph view collection upon traversal #85
Workflow file for this run
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
name: release-prepare | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [ closed ] | |
env: | |
MYGET_API_TOKEN: ${{ SECRETS.MYGET_API_KEY }} | |
GITHUB_TOKEN: ${{ SECRETS.RINNE_GITHUB_TOKEN }} | |
jobs: | |
build: | |
if: contains(github.event.pull_request.labels.*.name, 'auto-release') | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 6.0.x SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Check .NET info | |
run: dotnet --info | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build solution | |
run: dotnet build -c Release --no-restore | |
# run-semantic-release: | |
# runs-on: ubuntu-latest | |
# needs: build | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - name: Run semantic-release | |
# run: | | |
# export PATH=$PATH:$(yarn global bin) | |
# yarn global add [email protected] | |
# semantic-release |