forked from clash-verge-rev/clash-verge-rev
-
Notifications
You must be signed in to change notification settings - Fork 0
219 lines (189 loc) · 7.06 KB
/
alpha.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
name: Alpha Build
on:
push:
branches: [migrate-tauri-v2]
tags-ignore: [updater, alpha]
workflow_dispatch:
concurrency:
group: alpha-${{ github.ref }}
cancel-in-progress: true
permissions: write-all
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: short
jobs:
# alpha:
# strategy:
# fail-fast: false
# matrix:
# include:
# - os: windows-latest
# target: x86_64-pc-windows-msvc
# - os: windows-latest
# target: i686-pc-windows-msvc
# - os: windows-latest
# target: aarch64-pc-windows-msvc
# - os: macos-latest
# target: aarch64-apple-darwin
# - os: macos-latest
# target: x86_64-apple-darwin
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout Repository
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# - name: Install Rust Stable
# uses: dtolnay/rust-toolchain@stable
# - name: Add Rust Target
# run: rustup target add ${{ matrix.target }}
# - name: Rust Cache
# uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2
# with:
# workspaces: src-tauri
# - name: Install Node
# uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
# with:
# node-version: "20"
# - uses: pnpm/action-setup@v3
# name: Install pnpm
# with:
# version: 9
# run_install: false
# - name: Pnpm install and check
# run: |
# pnpm i
# pnpm check ${{ matrix.target }} --alpha
# - name: Tauri build
# uses: tauri-apps/tauri-action@8c3e0753aa015d00d03631d6d4f64ad59489251d # v0
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
# TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
# with:
# tagName: alpha
# releaseName: "Clash Verge Self Alpha"
# releaseBody: "More new features are now supported."
# releaseDraft: false
# prerelease: true
# tauriScript: pnpm
# args: --target ${{ matrix.target }}
# - name: Portable Bundle
# if: matrix.os == 'windows-latest'
# run: pnpm portable ${{ matrix.target }} --alpha
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
alpha-for-linux:
strategy:
fail-fast: false
matrix:
include:
# - os: ubuntu-22.04
# target: x86_64-unknown-linux-gnu
# - os: ubuntu-22.04
# target: i686-unknown-linux-gnu
- os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
# - os: ubuntu-22.04
# target: armv7-unknown-linux-gnueabihf
outputs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Build for Linux
uses: ./.github/build-for-linux
env:
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
with:
target: ${{ matrix.target }}
alpha: true
- name: Get Version
id: get_version
run: |
sudo apt-get update
sudo apt-get install jq
echo "VERSION=$(cat package.json | jq '.version' | tr -d '"')" >> "$GITHUB_OUTPUT"
echo "BUILDTIME=$(TZ=Asia/Shanghai date)" >> "$GITHUB_ENV"
- name: Upload Release
if: startsWith(matrix.target, 'x86_64')
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2
with:
tag_name: alpha
name: "Clash Verge Self Alpha"
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}
files: src-tauri/target/${{ matrix.target }}/release/bundle/appimage/*.AppImage*
- name: Upload Release
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2
with:
tag_name: alpha
name: "Clash Verge Self Alpha"
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}
files: |
src-tauri/target/${{ matrix.target }}/release/bundle/deb/*.deb
src-tauri/target/${{ matrix.target }}/release/bundle/rpm/*.rpm
# pkgbuild:
# name: PKGBUILD for ArchLinux
# needs: [alpha-for-linux]
# strategy:
# fail-fast: false
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# - name: Update Checksums
# run: |
# echo "version: ${{ needs.alpha-for-linux.outputs.VERSION }}"
# wget https://github.com/oomeow/clash-verge-self/releases/download/alpha/clash-verge_${{ needs.alpha-for-linux.outputs.VERSION }}_amd64.deb -O amd64.deb
# sed -i "s/sha256sums_x86_64=.*/sha256sums_x86_64=(\"$(sha256sum ./amd64.deb | awk '{print $1}')\")/" archbuild/alpha/PKGBUILD
# - name: Makepkg Build and Check
# id: makepkg
# uses: CachyOS/pkgbuild-action@master
# with:
# pkgdir: archbuild/alpha
# - name: Print Package Files
# run: |
# echo "Successfully created the following package archive"
# echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
# - name: Upload Release
# uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2
# with:
# tag_name: alpha
# name: "Clash Verge Self Alpha"
# prerelease: true
# token: ${{ secrets.GITHUB_TOKEN }}
# files: ${{ steps.makepkg.outputs.pkgfile0 }}
# update_tag:
# name: Update tag
# runs-on: ubuntu-22.04
# needs: [alpha, pkgbuild]
# steps:
# - name: Checkout repository
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# - name: Set Env
# run: |
# echo "BUILDTIME=$(TZ=Asia/Shanghai date)" >> $GITHUB_ENV
# shell: bash
# - name: Update Tag
# uses: richardsimko/update-tag@e173a8ef8f54ab526a91dad6139a25efed62424c # v1
# with:
# tag_name: alpha
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Generate Changelog
# run: |
# cat >> ${{ github.workspace }}/CHANGELOG.md << 'EOF'
# [FAQ](https://clash-verge-rev.github.io/faq/windows.html)
# Created at ${{ env.BUILDTIME }}.
# EOF
# - name: Upload Release
# uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2
# with:
# tag_name: alpha
# name: "Clash Verge Self Alpha"
# body_path: ${{ github.workspace }}/CHANGELOG.md
# prerelease: true
# token: ${{ secrets.GITHUB_TOKEN }}
# generate_release_notes: true