Skip to content

project: use hotkey model instead of keycodes to allow for key combos. #21

project: use hotkey model instead of keycodes to allow for key combos.

project: use hotkey model instead of keycodes to allow for key combos. #21

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
push-deploy:
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