-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (68 loc) · 1.88 KB
/
release.yml
File metadata and controls
83 lines (68 loc) · 1.88 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Release
on:
push:
tags:
- v*
jobs:
build:
name: Build the Project
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
preset: [windows-release, linux-release]
exclude:
- os: ubuntu-latest
preset: windows-release
- os: windows-latest
preset: linux-release
permissions:
packages: write
contents: write
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
ref: ${{ github.event.workflow_run.head_sha }}
submodules: recursive
- name: Install CMake
uses: ssrobins/install-cmake@v1
with:
version: 4.2.2
- name: Install VS 18 2026 Build tools (Windows only)
if: runner.os == 'Windows'
uses: k3DW/setup-msvc@v1
with:
vs-version: "18.2.1"
- name: Build Project
run: cmake --workflow --preset workflow-${{ matrix.preset }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: digraph-${{ matrix.preset }}-${{ github.ref_name }}
path: build/conf-${{ matrix.preset }}/bin/*
create-release:
name: Create Release
needs: build
permissions:
packages: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
pattern: digraph-*
path: dist
merge-multiple: true
- name: Copy licensing notices
run: cp THIRD_PARTY_NOTICES.txt ./dist/THIRD_PARTY_NOTICES.txt
- name: Release
uses: softprops/action-gh-release@v2
with:
files: dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}