Skip to content

soundcommand: change default volume to 1 to prevent culture variance … #5

soundcommand: change default volume to 1 to prevent culture variance …

soundcommand: change default volume to 1 to prevent culture variance … #5

Workflow file for this run

name: Tag
on:
push:
tags:
- "v*.*.*"
jobs:
release-tag:
runs-on: windows-latest
env:
Project_Path: SimpleTwitchEmoteSounds/SimpleTwitchEmoteSounds.csproj
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Publish Application
run: dotnet publish ${{ env.Project_Path }} -c Release -o ./publish -r win-x64 -p:PublishSingleFile=true -p:DebugType=none -p:PublishReadyToRun=false -p:IncludeNativeLibrariesForSelfExtract=true --self-contained false
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: SimpleTwitchEmoteSounds
path: ./publish
- name: Release
uses: softprops/action-gh-release@v2
with:
files: ./publish/SimpleTwitchEmoteSounds.exe
token: ${{ secrets.STES_TOKEN }}