Skip to content

Commit

Permalink
workflow(fix): final workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigTag committed Jan 29, 2025
1 parent 105680b commit 51f2019
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Cache cargo-msfs
uses: actions/cache@v4
with:
path: $HOME/.cargo/bin
path: ~\.cargo\bin
key: ${{ runner.os }}-cargo-msfs

- name: Setup
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,24 @@ run-name: Create release for `${{ github.ref_name }}`

jobs:
release-wasm:
runs-on: ubuntu-latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4

- name: Install LLVM and Clang
uses: KyleMayes/[email protected]
with:
version: "17.0.6"

- name: Cache cargo-msfs
uses: actions/cache@v4
with:
path: ~\.cargo\bin
key: ${{ runner.os }}-cargo-msfs

- name: Setup
run: npm run setup

- name: Build WASM module
run: npm run build:wasm-workflow

Expand Down

0 comments on commit 51f2019

Please sign in to comment.