project: switch from itemcontrol to itemrepeater which allows for vir… #4
Workflow file for this run
This file contains 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: 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 }} |