SQLite session archive + raw-log archive + debug log with unknown-eve… #3
Workflow file for this run
This file contains hidden or 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: release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Publish single-file exe | |
| run: > | |
| dotnet publish -c Release -r win-x64 --self-contained true | |
| -p:PublishSingleFile=true | |
| -p:IncludeNativeLibrariesForSelfExtract=true | |
| -p:EnableCompressionInSingleFile=true | |
| -p:DebugType=none -p:DebugSymbols=false | |
| -o publish | |
| - name: Attach exe to release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: publish/SCLogReader.exe | |
| generate_release_notes: true |