mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: Build and Publish
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 10.0.x
|
|
|
|
- name: Restore
|
|
run: dotnet restore -r win-x64
|
|
|
|
- name: Build Release
|
|
run: dotnet build -c Release --no-restore /p:BuildNumber=${{ github.run_number }} /p:SourceRevisionId=${{ github.sha }}
|
|
|
|
- name: Publish Release
|
|
run: dotnet publish -c Release -r win-x64 --self-contained true --no-build /p:BuildNumber=${{ github.run_number }} /p:SourceRevisionId=${{ github.sha }}
|
|
|
|
|
|
- name: Create ZIP
|
|
shell: pwsh
|
|
run: |
|
|
$publish = "bin/Release/net10.0/win-x64/publish"
|
|
$version = (Select-String -Path "$publish\*.deps.json" -Pattern '"version":').Line.Split('"')[3]
|
|
$zip = "splitter-win-x64-$version-${{ github.run_number }}.zip"
|
|
|
|
if (Test-Path $zip) { Remove-Item $zip }
|
|
Compress-Archive -Path "$publish/*" -DestinationPath $zip
|
|
|
|
Write-Host "Created $zip"
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: splitter-win-x64
|
|
path: splitter-win-x64-*.zip
|