Skip to content

Commit

Permalink
don't verify publish on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Jan 9, 2024
1 parent 8f0069b commit 230e853
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ jobs:
- run: ls -la
- run: rm code.tar.gz
- run: cargo build --target wasm32-unknown-unknown
- run: cargo publish --allow-dirty --dry-run

- if: matrix.os == 'macos-latest'
run: cargo publish --allow-dirty --no-verify --dry-run

- if: matrix.os != 'macos-latest'
run: cargo publish --allow-dirty --dry-run

publish:
needs: [test]
Expand Down

0 comments on commit 230e853

Please sign in to comment.