-
Notifications
You must be signed in to change notification settings - Fork 2
128 lines (107 loc) · 3.23 KB
/
Copy pathrelease.yml
File metadata and controls
128 lines (107 loc) · 3.23 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: Release
on:
push:
branches: [main, staging]
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
target: node18-linux-x64
- os: windows-latest
target: node18-win-x64
- os: macos-latest
target: node18-macos-arm64
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
# ----------------------------
# Checkout
# ----------------------------
- uses: actions/checkout@v4
with:
fetch-depth: 0
# ----------------------------
# Node
# ----------------------------
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
cache: npm
# ----------------------------
# Install
# ----------------------------
- run: npm ci
# ----------------------------
# Ensure correct wrtc native binary
# ----------------------------
- run: npm rebuild @roamhq/wrtc
working-directory: ./implementations/js/server
# ----------------------------
# Build
# ----------------------------
- run: npm run build
# ----------------------------
# Package
# ----------------------------
- name: Package server
run: npx pkg . --targets ${{ matrix.target }} --output ./dist/bin/wsc-server-${{ matrix.target }}
working-directory: ./implementations/js/server
# ----------------------------
# macOS ad-hoc signing
# ----------------------------
- name: Codesign macOS binary
if: matrix.os == 'macos-latest'
run: |
find ./implementations/js/server/dist/bin -type f -exec codesign --force --deep --sign - {} \;
# ----------------------------
# Upload artifacts
# ----------------------------
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.target }}
path: ./implementations/js/server/dist/bin/*
release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# ----------------------------
# Checkout
# ----------------------------
- uses: actions/checkout@v4
with:
fetch-depth: 0
# ----------------------------
# Node
# ----------------------------
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
cache: npm
# ----------------------------
# Install
# ----------------------------
- run: npm ci
# ----------------------------
# Restore binaries EXACTLY where semantic-release expects them
# ----------------------------
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: ./implementations/js/server/dist/bin
merge-multiple: true
# ----------------------------
# Release
# ----------------------------
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}