-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
110 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,35 @@ | ||
name: "Test build" | ||
name: "Release" | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- v.* | ||
|
||
jobs: | ||
test-tauri: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
changes: ${{ steps.changelog_reader.outputs.changes }} | ||
version: ${{ steps.changelog_reader.outputs.VERSION }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get version number | ||
id: get_version | ||
run: | | ||
VERSION=${GITHUB_REF#refs/tags/} | ||
VERSION=${VERSION/v./} | ||
echo "::set-output name=version::$VERSION" | ||
- name: Changelog Reader | ||
id: changelog_reader | ||
uses: mindsers/[email protected] | ||
with: | ||
path: "CHANGELOG.md" | ||
version: ${{ steps.get_version.outputs.version }} | ||
|
||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -15,12 +39,15 @@ jobs: | |
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install Rust nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
|
||
- name: Install dependencies (windows only) | ||
if: matrix.platform == 'windows-latest' | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
@@ -29,25 +56,42 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
- name: Install frontend dependencies | ||
run: pnpm install | ||
|
||
- name: Install deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: canary | ||
|
||
- name: Confirm language | ||
env: | ||
MATRIX_LANG: ${{ matrix.lang }} | ||
run: deno run -A script/lang.ts | ||
|
||
- name: Build | ||
uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Add tag | ||
|
||
- name: Built | ||
env: | ||
MATRIX_LANG: ${{ matrix.lang }} | ||
run: deno run -A script/tag.ts | ||
run: deno run -A script/built.ts | ||
|
||
- name: Upload release assets | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
name: Tran ${{ needs.create_release.outputs.version }} | ||
body: | | ||
${{ needs.create_release.outputs.changes }} | ||
files: release/* | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: "Test build" | ||
on: [pull_request] | ||
|
||
jobs: | ||
test-tauri: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
platform: [macos-latest, ubuntu-latest, windows-latest] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install Rust nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Install dependencies (windows only) | ||
if: matrix.platform == 'windows-latest' | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
- name: Install dependencies (ubuntu only) | ||
if: matrix.platform == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
- name: Install frontend dependencies | ||
run: pnpm install | ||
- name: Install deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: canary | ||
run: deno run -A script/lang.ts | ||
- name: Build | ||
uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changelog | ||
|
||
## [0.1.1] | ||
|
||
<div align="center"> | ||
|
||
| **To \ Form** | **CN** | | ||
| :-----------: | :----: | | ||
| **EN** | ✅ | | ||
| **JP** | ✅ | | ||
|
||
</div> | ||
|
||
如有 Bug,请提 issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters