name: Create Release (Windows) on: workflow_dispatch: jobs: build: runs-on: windows-latest steps: - name: Extract Version run: echo "VERSION=$(python scripts/version_extract.py)" >> $GITHUB_ENV - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - name: Restore dependencies run: dotnet restore - name: Build ${{ env.VERSION}} run: dotnet build