-
Notifications
You must be signed in to change notification settings - Fork 5
81 lines (74 loc) · 2.35 KB
/
release.yml
File metadata and controls
81 lines (74 loc) · 2.35 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
name: Release Tag
on:
push:
tags:
# pseudo-semver match
- "[0-9]+.[0-9]+.[0-9]+*"
permissions:
contents: read
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
persist-credentials: false
- run: git describe --always HEAD
- uses: cachix/install-nix-action@616559265b40713947b9c190a8ff4b507b5df49b # v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix develop --command make crossbuild_mac
- run: nix develop --command make crossbuild_mac_bundles
- name: 'Upload Artifacts'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
id: upload
with:
name: binaries-macos
path: bin/*
build-others:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
persist-credentials: false
- run: git describe --always HEAD
- uses: cachix/install-nix-action@616559265b40713947b9c190a8ff4b507b5df49b # v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix develop --command make crossbuild
- name: 'Upload Artifacts'
id: upload
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: binaries-others
path: bin/*
release:
needs: [build-macos, build-others]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
persist-credentials: false
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
pattern: binaries-*
path: artifacts/
merge-multiple: true
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create \
--verify-tag \
--notes-from-tag \
"$GITHUB_REF_NAME" \
$(find artifacts/ -maxdepth 1 -type f)