Skip to content

Commit

Permalink
ci(release): fix release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Nov 18, 2024
1 parent 332144b commit d3d8c9c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tag": "nightly",
"changes": []
}
18 changes: 16 additions & 2 deletions .github/workflows/covector-version-or-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,18 @@ jobs:
args: ""
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: lts/*
node-version: 20
cache: "pnpm"

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -86,8 +95,13 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Rust Cache
uses: Swatinem/rust-cache@v2

- name: Install frontend dependencies
run: pnpm install

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit d3d8c9c

Please sign in to comment.