Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
retention-days: 30

- name: Deploy to Vercel
uses: vercel/action@v5
uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
Expand Down Expand Up @@ -88,24 +88,24 @@ jobs:
- name: Cache cargo registry
uses: actions/cache@v6
with:
path: \~/.cargo/registry
key: \( {{ runner.os }}-cargo-registry- \){{ hashFiles('**/Cargo.lock') }}
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-

- name: Cache cargo index
uses: actions/cache@v6
with:
path: \~/.cargo/git
key: \( {{ runner.os }}-cargo-git- \){{ hashFiles('**/Cargo.lock') }}
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-git-

- name: Cache cargo build
uses: actions/cache@v6
with:
path: target
key: \( {{ runner.os }}-cargo-build-target- \){{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-build-target-

Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Set up cosign
uses: sigstore/cosign-installer@v3
with:
cosign-release: 'v2.4.3'
cosign-release: "v2.4.3"

- name: Download WASM artifacts
uses: actions/download-artifact@v8
Expand Down