Skip to content

- Bug fix: Prevent the message copy button from taking focus away fro… #256

- Bug fix: Prevent the message copy button from taking focus away fro…

- Bug fix: Prevent the message copy button from taking focus away fro… #256

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/setup-dotnet@v3.2.0
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