Skip to content

Commit

Permalink
Add workflow to publish results
Browse files Browse the repository at this point in the history
  • Loading branch information
light2802 committed Jul 24, 2023
1 parent 1ce50b6 commit 15b53e4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: publish-benchmarks


on:
push:
branches:
- main

defaults:
run:
shell: bash -l {0}


permissions:
contents: read
pages: write
id-token: write


jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/configure-pages@v1

- uses: actions/upload-pages-artifact@v1
with:
path: .asv/html

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 15b53e4

Please sign in to comment.