stop propagating the click event into the parent #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
pages: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: create site directory | |
run: cp -Rvp www _site | |
- name: copy files | |
run: cp -Rvp lib specs _site/ | |
- name: create robots.txt | |
run: | | |
printf "User-agent: *\nDisallow: /specs\n" > _site/robots.txt | |
- name: configure | |
uses: actions/configure-pages@v4 | |
- name: upload | |
uses: actions/upload-pages-artifact@v3 | |
- name: deploy | |
uses: actions/deploy-pages@v4 |