Skip to content

Bump System.Text.Json from 8.0.3 to 8.0.4 in /SimpleVoiceroid2Proxy #41

Bump System.Text.Json from 8.0.3 to 8.0.4 in /SimpleVoiceroid2Proxy

Bump System.Text.Json from 8.0.3 to 8.0.4 in /SimpleVoiceroid2Proxy #41

Workflow file for this run

name: Build
on:
push:
paths:
- 'SimpleVoiceroid2Proxy/**'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: MSBuild
run: msbuild SimpleVoiceroid2Proxy.sln -property:Configuration="Release" -property:Platform="Any CPU" -m -restore
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: SimpleVoiceroid2Proxy
if-no-files-found: error
path: SimpleVoiceroid2Proxy/bin/Release
- name: Create Release
shell: powershell
if: startsWith(github.ref, 'refs/tags/')
run: Compress-Archive -Path SimpleVoiceroid2Proxy/bin/Release/* -DestinationPath SimpleVoiceroid2Proxy.zip
- name: Upload Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: SimpleVoiceroid2Proxy.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}