-
Notifications
You must be signed in to change notification settings - Fork 6
185 lines (156 loc) · 6.02 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
name: Release
on:
push:
branches:
- "release"
jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-22.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}
change_log: ${{ steps.changelog.outputs.changelog }}
version: ${{ steps.changelog.outputs.version }}
tag: ${{ steps.changelog.outputs.tag }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Generate Changelog for Release
id: changelog
uses: Tormak9970/reliable-changelog@v2
with:
github-token: ${{ secrets.github_token }}
current-version: "./package.json"
version-path: "version"
patch-version-bump-interval: "10"
- name: Create Release
id: create-release
uses: actions/github-script@v6
env:
RELEASE_TAG: ${{ steps.changelog.outputs.tag }}
RELEASE_LOG: ${{ steps.changelog.outputs.changelog }}
with:
script: |
const { data } = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: `${process.env.RELEASE_TAG}`,
name: `SARM ${process.env.RELEASE_TAG}`,
body: `${process.env.RELEASE_LOG}`,
draft: true,
prerelease: false
});
return data.id
build-tauri:
needs: create-release
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: release
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: Install Dependencies (Linux Only)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install Frontend Dependencies
run: bun install
- name: Build App
uses: tauri-apps/tauri-action@dev
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
releaseId: ${{ needs.create-release.outputs.release_id }}
tagName: ${{ needs.create-release.outputs.tag }}
releaseBody: "Check Github for the release notes!"
releaseDraft: true
includeUpdaterJson: true
tauriScript: "bun tauri"
publish-release:
needs: [create-release, build-tauri]
permissions:
contents: write
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: release
- name: Update Release Assets
uses: ./.github/workflows/create-release-assets
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release_id: ${{ needs.create-release.outputs.release_id }}
release_tag: ${{ needs.create-release.outputs.tag }}
git_branch: "release"
change_log: ${{ needs.create-release.outputs.change_log }}
- name: "Update CHANGELOG.md"
uses: actions/github-script@v6
env:
git_branch: "release"
release_id: ${{ needs.create-release.outputs.release_id }}
release_tag: ${{ needs.create-release.outputs.tag }}
change_log: ${{ needs.create-release.outputs.change_log }}
with:
script: |
const fs = require("fs");
const child_process = require("child_process");
const path = require("path");
const config = (prop, value) => exec.exec(`git config ${prop} "${value}"`);
const add = (file) => exec.exec(`git add ${file}`);
const commit = (message) => exec.exec(`git commit -m "${message}"`);
const push = (branch) => exec.exec(`git push origin ${branch} --follow-tags`);
const updateOrigin = (repo) => exec.exec(`git remote set-url origin ${repo}`);
core.setSecret(process.env.GITHUB_TOKEN);
updateOrigin(`https://x-access-token:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`);
config('user.email', "[email protected]");
config('user.name', "SARM Release Action");
const cwdPath = path.resolve(process.cwd());
const changelogFilePath = path.join(cwdPath, "CHANGELOG.md");
let changelogFileContents = fs.readFileSync(changelogFilePath, 'utf8');
const changelogReplacer = `<!-- replace me with new updates! -->
## ${process.env.release_tag}
${process.env.change_log}`;
changelogFileContents = changelogFileContents.replace("<!-- replace me with new updates! -->", changelogReplacer);
fs.writeFileSync(changelogFilePath, changelogFileContents);
await add(".");
await commit("chore(release): updated changelog file");
await push(process.env.git_branch);
- name: Publish Release
id: publish-release
uses: actions/github-script@v6
env:
release_id: ${{ needs.create-release.outputs.release_id }}
with:
script: |
github.rest.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
draft: false,
prerelease: false
})