EllieHub/.woodpecker/build.yaml

31 lines
838 B
YAML
Raw Normal View History

2024-07-18 07:15:28 -07:00
when:
- event: tag
- event: pull_request
branch: ${CI_REPO_DEFAULT_BRANCH}
path: Makefile
2024-07-18 07:05:00 -07:00
2024-07-18 07:15:28 -07:00
variables:
- &dotnet_image 'mcr.microsoft.com/dotnet/sdk:8.0'
2024-07-18 07:05:00 -07:00
2024-07-18 07:15:28 -07:00
# cspell:words bindata netgo
steps:
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test
- name: Publish
run: |
cd .\EllieHub\
dotnet publish -c Release -r win-x64 -o "build\EllieHub_win-x64" --self-contained
dotnet publish -c Release -r win-arm64 -o "build\EllieHub_win-arm64" --self-contained
cd ..\
- name: Package
run: |
New-Item -ItemType Directory -Path "zips"
Compress-Archive -Path "build\EllieHub_win-x64" -DestinationPath "zips\EllieHub_win-x64.zip"
Compress-Archive -Path "build\EllieHub_win-arm64" -DestinationPath "zips\EllieHub_win-arm64.zip"