Skip to content

Commit

Permalink
Fixing main branch workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Feb 21, 2022
1 parent 4d2772d commit 49d3eeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
command: doc
args: -v --document-private-items
- run: echo "<meta http-equiv=refresh content=0;url=boa/index.html>" > target/doc/index.html
- run: echo "<meta http-equiv=refresh content=0;url=boa_engine/index.html>" > target/doc/index.html
- run: |
if [ -d target/doc_upload ]; then rm -rf target/doc_upload; fi
mkdir target/doc_upload && mv target/doc target/doc_upload/doc
Expand All @@ -43,7 +43,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run benchmark
run: cargo bench -p Boa -- --output-format bencher | tee output.txt
run: cargo bench -p boa_engine -- --output-format bencher | tee output.txt
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1.13.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
ref: ${{ github.sha }}
- run: cargo login ${CARGO_REGISTRY_TOKEN}
- run: cargo publish
working-directory: boa
working-directory: boa_engine
doc-publish:
needs: publish
runs-on: ubuntu-latest
Expand Down

0 comments on commit 49d3eeb

Please sign in to comment.