-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (40 loc) · 1.09 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
jobs:
build:
name: "Build packages"
strategy:
matrix:
os:
- "windows-latest"
- "ubuntu-latest"
- "macos-latest"
aot:
- true
- false
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Setup python"
uses: "actions/setup-dotnet@v4"
with:
dotnet-version: '8'
- name: "Install AoT requirements"
if: matrix.aot
run: |
"sudo apt-get update -y"
"sudo apt-get upgrade -y"
"sudo apt-get install -y clang zlib1g-dev"
- name: "Publish binary"
run: "dotnet publish --output dist -p PublishAoT=${{ matrix.aot }}"
- name: "Create archive"
run: "7z x E5Renewer-${{ matrix.os }}-x86_64-${{ matrix.aot && 'aot' || 'noaot' }}.7z dist/*"
- name: "Create release"
uses: "softprops/action-gh-release@v2"
with:
files: "E5Renewer-*.7z"
generate_release_notes: true