diff --git a/.changes/pre.json b/.changes/pre.json new file mode 100644 index 0000000..05f452d --- /dev/null +++ b/.changes/pre.json @@ -0,0 +1,4 @@ +{ + "tag": "nightly", + "changes": [] +} diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index 427f717..808cea4 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -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: @@ -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 }}