-
Notifications
You must be signed in to change notification settings - Fork 65
140 lines (119 loc) · 4.22 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
# .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
# Driver
- 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.outputs.type }} version: ${{ steps.publish.outputs.version }}"
- name: If 'edgedb' version unchanged
if: steps.publish_driver.outputs.type == 'none'
run: |
echo "Version in package.json has not changed. Skipping."
# 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.outputs.type }} version: ${{ steps.publish.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."
# Changelogs
- name: Changelog Vars
run: |
echo "last_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
echo "curr_commit=$(git rev-parse HEAD)" >> $GITHUB_ENV
- 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
- 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