Skip to content

Commit

Permalink
fix: permission to write junit was not set
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocdias committed Aug 14, 2024
1 parent 1bd750e commit b92dbc2
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "*"

permissions:
contents: read
contents: write

jobs:
build:
Expand All @@ -17,17 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: wasm32-unknown-unknown
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
- name: Run tests (Native)
run: cargo nextest run --verbose --release
- name: Run tests (WASM)
run: wasm-pack test --release --headless --chrome
run: cargo nextest run --release
- name: Upload test results
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit b92dbc2

Please sign in to comment.