Updated with new abuseipdb and nicer js bundling #63
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: Deploy to GitHub Pages and build js release | |
permissions: | |
contents: write | |
pages: write | |
on: ["workflow_dispatch", "push"] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload to pages branch | |
uses: fastai/workflows/quarto-ghp@master | |
with: | |
version: '3.11' | |
- name: build | |
run: build.sh | |
- name: release upload | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: dist/* |