-
Notifications
You must be signed in to change notification settings - Fork 5
235 lines (208 loc) · 7.12 KB
/
rs-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
name: '[rs] Release (Rust)'
on:
push:
tags:
- 'rs/v*-rc'
env:
# see https://api.github.com/users/github-actions%5Bbot%5D
GITHUB_USER_NAME: github-actions[bot]
GITHUB_USER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
# crates in order of dependency (topological order), first the ones that are not dependent on any other
SAILS_CRATES: |
sails-idl-meta
sails-idl-parser
sails-idl-gen
sails-client-gen
sails-macros-core
sails-macros
sails-rs
sails-cli
MAIN_BRANCH: master
jobs:
prepare:
name: Prepare Release
runs-on: ubuntu-latest
permissions:
contents: write
defaults:
run:
shell: bash
outputs:
rc_branch: ${{ steps.release_branch.outputs.rc_branch }}
r_version: ${{ steps.release_info.outputs.version }}
r_tag: rs/v${{ steps.release_info.outputs.version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Release Info
id: release_info
run: |
RELEASE_TAG=${GITHUB_REF#refs/tags/}
VERSION=${RELEASE_TAG#rs/v}
VERSION="${VERSION%-rc}"
if [[ ! $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "'$VERSION' is not a valid semver version"
exit 1
fi
echo "Version: $VERSION"
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Set Workspace Version
run: |
sed -i "s/^version = \".*\"/version = \"${{ steps.release_info.outputs.version }}\"/" Cargo.toml
- name: Update Workspace Dependencies
run: |
cargo update
- name: Create Release Branch
id: release_branch
run: |
RC_BRANCH="rc/rs/v${{ steps.release_info.outputs.version }}"
git config --global user.name "$GITHUB_USER_NAME"
git config --global user.email "$GITHUB_USER_EMAIL"
git checkout -b "$RC_BRANCH"
git add Cargo.toml
git add Cargo.lock
git commit -m "build(rs): update version to v${{ steps.release_info.outputs.version }}"
git push origin "$RC_BRANCH"
echo "rc_branch=$RC_BRANCH" >> $GITHUB_OUTPUT
ws_tests:
name: Run Workspace Tests
if: false
needs:
- prepare
uses: ./.github/workflows/rs-run-ws-tests.yml
with:
sources_ref: ${{ needs.prepare.outputs.rc_branch }}
gear_node_version: 1.6.0
cli_tests:
name: Run CLI Tests
if: false
needs:
- prepare
uses: ./.github/workflows/rs-run-cli-tests.yml
with:
sources_ref: ${{ needs.prepare.outputs.rc_branch }}
assets:
name: Build Assets
runs-on: ubuntu-latest
needs:
- prepare
defaults:
run:
shell: bash
steps:
- name: Checkout Code from Release Branch
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare.outputs.rc_branch }}
- name: Install wasm-opt
uses: ./.github/actions/install-wasm-utils
- name: Build IDL Parser for WASM
run: |
cargo build -p sails-idl-parser --target wasm32-unknown-unknown --release
mkdir -p ./assets/sails_idl_parser
wasm-opt -O4 -o ./assets/sails_idl_parser/sails_idl_parser.wasm ./target/wasm32-unknown-unknown/release/sails_idl_parser.wasm
- name: Upload Assets
uses: actions/upload-artifact@v4
with:
name: sails-assets
path: ./assets/
publish:
name: Publish Crates
runs-on: ubuntu-latest
needs:
- prepare
#- ws_tests
#- cli_tests
defaults:
run:
shell: bash
steps:
- name: Checkout Code from Release Branch
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare.outputs.rc_branch }}
- name: Publish Crates
run: |
VERSION=${{ needs.prepare.outputs.r_version }}
for SAILS_CRATE in $SAILS_CRATES; do
sed -i "/^\s*${SAILS_CRATE} = {.*}/ s/}/, version = \"=${VERSION}\" }/" Cargo.toml
done
cat Cargo.toml
cargo login ${{ secrets.CRATES_IO_TOKEN }}
git checkout -- .
- name: Update Contract Template
run: |
VERSION=${{ needs.prepare.outputs.r_version }}
sed -i -E "s/(variable::set\(\"sails-rs-version\", \")([^\"]+)(\"\);)/\1$VERSION\3/" templates/set-vars.rhai
git config --global user.name "$GITHUB_USER_NAME"
git config --global user.email "$GITHUB_USER_EMAIL"
git add templates/set-vars.rhai
git commit -m "build(tmpl): update version to v${{ needs.prepare.outputs.r_version }} in contract template"
git push origin "${{ needs.prepare.outputs.rc_branch }}"
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
needs:
- prepare
- publish
- assets
defaults:
run:
shell: bash
steps:
- name: Checkout Code from Release Branch
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare.outputs.rc_branch }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Download Assets
uses: actions/download-artifact@v4
with:
name: sails-assets
path: ./assets
- name: Create Release Tag
run: |
R_TAG=${{ needs.prepare.outputs.r_tag }}
git config --global user.name "$GITHUB_USER_NAME"
git config --global user.email "$GITHUB_USER_EMAIL"
git tag -a "$R_TAG" -m "Release v${{ needs.prepare.outputs.r_version }}"
git push origin "$R_TAG"
- name: Install GitHub CLI
run: sudo apt-get install -y gh
- name: Create Sync PR
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
gh pr create \
--title "chore: sync release v${{ needs.prepare.outputs.r_version }} to master" \
--body "This PR was created by GitHub Actions" \
--base master \
--head ${{ needs.prepare.outputs.rc_branch }}
# - name: Create Sync PR
# run: |
# echo "GH_USER_NAME=${GITHUB_USER_NAME}"
# echo "MAIN_BRANCH=${MAIN_BRANCH}"
# curl -X POST \
# -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
# -H "Accept: application/vnd.github+json" \
# https://api.github.com/repos/${{ github.repository }}/pulls \
# -d '{
# "title": "chore: sync release v${{ needs.prepare.outputs.r_version }} to master",
# "head": "${{ needs.prepare.outputs.rc_branch }}",
# "base": "master",
# "body": "This PR was created by GitHub Actions"
# }'
- name: Create Draft Release
uses: softprops/action-gh-release@v2
with:
name: Sails-RS v${{ needs.prepare.outputs.r_version }}
tag_name: ${{ needs.prepare.outputs.r_tag }}
draft: true
generate_release_notes: true
fail_on_unmatched_files: true
files: |
./assets/sails_idl_parser/sails_idl_parser.wasm
token: ${{ secrets.GITHUB_TOKEN }}