Added manual dismount note #297
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: Deployment Pipeline for develop branch | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| deploy: | |
| permissions: write-all | |
| runs-on: windows-latest | |
| outputs: | |
| version: ${{ steps.release.outputs.version }} | |
| steps: | |
| - name: Checkout repository | |
| id: checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up .NET | |
| id: setup | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Build .NET solution | |
| id: build | |
| run: | | |
| dotnet build gamevault.sln --configuration Release | |
| 7z a GameVault.zip gamevault/bin | |
| - name: Upload binaries to release | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| file: GameVault.zip | |
| asset_name: GameVault.zip | |
| tag: unstable | |
| overwrite: true | |
| prerelease: true |