2023-04-07 21:44:23 +00:00
|
|
|
name: Publish site
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: bcomnes/deploy-to-neocities@v1
|
|
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
|
|
with:
|
|
|
|
api_token: ${{ secrets.NEOCITIES_API_KEY }}
|
2023-04-07 22:04:26 +00:00
|
|
|
dist_dir: ../src
|
2023-04-07 21:44:23 +00:00
|
|
|
cleanup: true
|