Update .woodpecker/build.yaml

This commit is contained in:
Toastie 2024-07-18 07:15:28 -07:00
parent 88d214b8a2
commit 99a03c07c7

View file

@ -1,22 +1,31 @@
pipeline:
run-one:
image: busybox
group: first
commands:
- echo "first run"
run-two:
image: busybox
group: first
commands:
- echo "second run"
run-three:
image: ubuntu
commands:
- echo hi
when: when:
branch: - event: tag
include: [ main, release/* ] - event: pull_request
exclude: [ test/1.0.0, test/1.1.* ] branch: ${CI_REPO_DEFAULT_BRANCH}
path: Makefile
variables:
- &dotnet_image 'mcr.microsoft.com/dotnet/sdk:8.0'
# 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"