Merge pull request #300 from garbled1/infinite_loop_bad #131
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: GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Build | |
run: | | |
sudo apt-get --yes install --no-install-recommends libimage-exiftool-perl | |
pip install wheel | |
pip install git+https://github.com/spanezz/[email protected] | |
ssite build --output public | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
cname: dosage.rocks | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
exclude_assets: 'Jenkinsfile,dosagelib,scripts,setup.*,tests,*.ini' |