-
Notifications
You must be signed in to change notification settings - Fork 3
135 lines (116 loc) · 4.04 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
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
129
130
131
132
133
134
135
name: 'Release'
on:
push:
branches:
- main
- develop
paths-ignore:
- '.github/workflows/**'
workflow_dispatch:
jobs:
pre-ci:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: 'Block Concurrent Executions'
uses: softprops/turnstyle@v1
with:
poll-interval-seconds: 10
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Build-Publish:
name: Build-Publish
needs: pre-ci
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]') && startsWith(github.event.head_commit.message, '[release]') && github.repository == 'subquery/network-clients'"
runs-on: ubuntu-latest
steps:
#Check out
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 16
#Identify changes
- uses: marceloprado/has-changed-path@v1
id: changed-network-config
with:
paths: packages/network-config
- uses: marceloprado/has-changed-path@v1
id: changed-network-support
with:
paths: packages/network-support
- uses: marceloprado/has-changed-path@v1
id: changed-eth-provider
with:
paths: packages/eth-provider
- uses: marceloprado/has-changed-path@v1
id: changed-network-clients
with:
paths: packages/network-clients
- uses: marceloprado/has-changed-path@v1
id: changed-network-query
with:
paths: packages/network-query
- uses: marceloprado/has-changed-path@v1
id: changed-react-hooks
with:
paths: packages/react-hooks
- uses: marceloprado/has-changed-path@v1
id: changed-apollo-links
with:
paths: packages/apollo-links
- run: yarn
- name: build
run: yarn build
#Publish to npm and github releases
- name: Publish network-config
if: steps.changed-network-config.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/network-config
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish network-query
if: steps.changed-network-query.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/network-query
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish network-clients
if: steps.changed-network-clients.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/network-clients
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish react-hooks
if: steps.changed-react-hooks.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/react-hooks
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish apollo-links
if: steps.changed-apollo-links.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/apollo-links
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish network-support
if: steps.changed-network-support.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/network-support
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Publish eth-provider
if: steps.changed-eth-provider.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: packages/eth-provider
repo-token: ${{ secrets.GITHUB_TOKEN }}
npm-token: ${{ secrets.NPM_TOKEN }}