-
Notifications
You must be signed in to change notification settings - Fork 67
235 lines (204 loc) · 7.85 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# .github/release.yml
name: release
on:
push:
branches:
- master
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.30.x
- name: Install deps and build
run: |
yarn
yarn workspaces run build
- name: Changelog Vars
run: |
echo "last_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
echo "curr_commit=$(git rev-parse HEAD)" >> $GITHUB_ENV
# edgedb
- name: Copy readme
run: cp README.md packages/driver/README.md
- id: publish_driver
name: Publish 'edgedb' to NPM
uses: JS-DevTools/npm-publish@v1
with:
package: packages/driver/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: false
- name: If publish 'edgedb'
if: steps.publish_driver.outputs.type != 'none'
run: |
echo "Published ${{ steps.publish_driver.outputs.type }} version: ${{ steps.publish_driver.outputs.version }}"
- name: If 'edgedb' version unchanged
if: steps.publish_driver.outputs.type == 'none'
run: |
echo "Version in package.json has not changed. Skipping."
- name: Build 'edgedb' Changelog
id: github_driver_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fromTag: "${{ env.last_tag }}"
toTag: ${{ github.ref }}
commitMode: true
configurationJson: |
{
"template": "## Commits:\n\n#{{UNCATEGORIZED}}",
"pr_template": "- #{{MERGE_SHA}} #{{TITLE}}",
"categories": []
}
- name: Create 'edgedb' Release
if: steps.publish_driver.outputs.type != 'none'
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.publish_driver.outputs.version }}
release_name: edgedb-js v${{ steps.publish_driver.outputs.version }}
commitish: ${{ github.ref }}
body: ${{steps.github_driver_release.outputs.changelog}}
draft: true
prerelease: false
# @edgedb/generate
- id: publish_generate
name: Publish '@edgedb/generate' to NPM
uses: JS-DevTools/npm-publish@v1
with:
package: packages/generate/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: false
- name: If publish '@edgedb/generate'
if: steps.publish_generate.outputs.type != 'none'
run: |
echo "Published ${{ steps.publish_generate.outputs.type }} version: ${{ steps.publish_generate.outputs.version }}"
- name: If '@edgedb/generate' version unchanged
if: steps.publish_generate.outputs.type == 'none'
run: |
echo "Version in package.json has not changed. Skipping."
- name: Build '@edgedb/generate' Changelog
id: github_generate_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fromTag: "${{ env.last_tag }}"
toTag: ${{ github.ref }}
commitMode: true
configurationJson: |
{
"template": "## Commits:\n\n#{{UNCATEGORIZED}}",
"pr_template": "- #{{MERGE_SHA}} #{{TITLE}}",
"categories": []
}
- name: Create '@edgedb/generate' Release
if: steps.publish_generate.outputs.type != 'none'
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: generate-v${{ steps.publish_generate.outputs.version }}
release_name: \@edgedb/generate v${{ steps.publish_generate.outputs.version }}
commitish: ${{ github.ref }}
body: ${{steps.github_generate_release.outputs.changelog}}
draft: true
prerelease: false
# @edgedb/auth-core
- id: publish_auth_core
name: Publish '@edgedb/auth-core' to NPM
uses: JS-DevTools/npm-publish@v1
with:
package: packages/auth-core/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: false
- name: If publish '@edgedb/auth-core'
if: steps.publish_auth_core.outputs.type != 'none'
run: |
echo "Published ${{ steps.publish_auth_core.outputs.type }} version: ${{ steps.publish_auth_core.outputs.version }}"
- name: If '@edgedb/auth-core' version unchanged
if: steps.public_auth_core.outputs.type == 'none'
run: |
echo "Version in package.json has not changed. Skipping."
- name: Build '@edgedb/auth-core' Changelog
id: github_auth_core_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fromTag: "${{ env.last_tag }}"
toTag: ${{ github.ref }}
commitMode: true
configurationJson: |
{
"template": "## Commits:\n\n#{{UNCATEGORIZED}}",
"pr_template": "- #{{MERGE_SHA}} #{{TITLE}}",
"categories": []
}
- name: Create '@edgedb/auth-core' Release
if: steps.publish_auth_core.outputs.type != 'none'
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-core-v${{ steps.publish_auth_core.outputs.version }}
release_name: \@edgedb/auth-core v${{ steps.publish_auth_core.outputs.version }}
commitish: ${{ github.ref }}
body: ${{steps.github_auth_core_release.outputs.changelog}}
draft: true
prerelease: false
# @edgedb/auth-nextjs
- id: publish_auth_nextjs
name: Publish '@edgedb/auth-nextjs' to NPM
uses: JS-DevTools/npm-publish@v1
with:
package: packages/auth-nextjs/package.json
token: ${{ secrets.NPM_TOKEN }}
dry-run: false
- name: If publish '@edgedb/auth-nextjs'
if: steps.publish_auth_nextjs.outputs.type != 'none'
run: |
echo "Published ${{ steps.publish_auth_nextjs.outputs.type }} version: ${{ steps.publish_auth_nextjs.outputs.version }}"
- name: If '@edgedb/auth-nextjs' version unchanged
if: steps.public_auth_nextjs.outputs.type == 'none'
run: |
echo "Version in package.json has not changed. Skipping."
- name: Build '@edgedb/auth-nextjs' Changelog
id: github_auth_nextjs_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fromTag: "${{ env.last_tag }}"
toTag: ${{ github.ref }}
commitMode: true
configurationJson: |
{
"template": "## Commits:\n\n#{{UNCATEGORIZED}}",
"pr_template": "- #{{MERGE_SHA}} #{{TITLE}}",
"categories": []
}
- name: Create '@edgedb/auth-nextjs' Release
if: steps.publish_auth_nextjs.outputs.type != 'none'
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: auth-nextjs-v${{ steps.publish_auth_nextjs.outputs.version }}
release_name: \@edgedb/auth-nextjs v${{ steps.publish_auth_nextjs.outputs.version }}
commitish: ${{ github.ref }}
body: ${{steps.github_auth_nextjs_release.outputs.changelog}}
draft: true
prerelease: false