2022-04-16 02:06:51 +00:00
|
|
|
---
|
2021-04-30 21:36:56 +00:00
|
|
|
name: GitHub Pages
|
|
|
|
|
|
|
|
on:
|
2021-05-01 12:10:48 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-04-30 21:36:56 +00:00
|
|
|
|
2021-05-10 20:17:00 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2021-04-30 21:36:56 +00:00
|
|
|
jobs:
|
|
|
|
deploy:
|
2022-04-16 02:06:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-04-30 21:36:56 +00:00
|
|
|
steps:
|
2023-09-05 07:10:11 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-04-30 21:36:56 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 10
|
|
|
|
|
|
|
|
- name: Set up Python
|
2023-12-07 07:42:43 +00:00
|
|
|
uses: actions/setup-python@v5
|
2021-04-30 21:36:56 +00:00
|
|
|
with:
|
2023-10-26 23:38:58 +00:00
|
|
|
python-version: '3.12'
|
2021-04-30 21:36:56 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2022-04-16 02:06:51 +00:00
|
|
|
sudo apt-get --yes install --no-install-recommends libimage-exiftool-perl
|
2022-11-12 10:00:09 +00:00
|
|
|
pip install wheel
|
2023-06-01 21:30:59 +00:00
|
|
|
pip install git+https://github.com/spanezz/staticsite.git@v2.3
|
2021-04-30 21:36:56 +00:00
|
|
|
ssite build --output public
|
|
|
|
|
|
|
|
- name: Deploy
|
2021-08-26 20:19:26 +00:00
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
2021-04-30 21:36:56 +00:00
|
|
|
with:
|
|
|
|
cname: dosage.rocks
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
exclude_assets: 'Jenkinsfile,dosagelib,scripts,setup.*,tests,*.ini'
|