-
Notifications
You must be signed in to change notification settings - Fork 3
87 lines (67 loc) · 1.97 KB
/
release.yml
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
name: Build and publish releases
on:
push:
tags:
- 'v*'
env:
NODE_VERSION: 18
jobs:
publish-linux:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: yarn install
- name: Publish
run: yarn run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-windows:
# Building on windows fails with
# error An unexpected error occurred: "https://registry.yarnpkg.com/viem/-/viem-0.3.37.tgz: ESOCKETTIMEDOUT".
# Since we are only making a zip, we don't need to be on windows, let make it on ubuntu
# runs-on: windows-latest
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: yarn install
- name: Publish
run: yarn run publish -p win32
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-macos:
runs-on: macos-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: yarn install
- name: Publish on arm
run: yarn run publish -p darwin -a arm64
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish on x64
run: yarn run publish -p darwin -a x64
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}