ntfy/.github/workflows/docs.yaml

38 lines
1001 B
YAML
Raw Normal View History

2022-11-14 02:59:12 +01:00
name: docs
on: [push, pull_request]
jobs:
2022-11-14 03:11:51 +01:00
docs:
2022-11-14 02:59:12 +01:00
runs-on: ubuntu-latest
steps:
-
name: Checkout ntfy code
uses: actions/checkout@v3
-
name: Checkout docs pages code
uses: actions/checkout@v3
with:
repository: binwiederhier/ntfy-docs.github.io
2022-11-14 03:05:03 +01:00
path: build/ntfy-docs.github.io
2022-11-14 02:59:12 +01:00
-
name: Build docs
2022-11-14 03:08:25 +01:00
run: |
make docs
ls server/docs/
2022-11-14 03:05:03 +01:00
-
name: Copy generated docs
2022-11-14 03:11:51 +01:00
run: |
echo "New docs:"
ls -1 server/docs/
echo "Existing docs:"
ls -1 build/ntfy-docs.github.io/docs/
rsync -av --delete server/docs/ build/ntfy-docs.github.io/docs/
2022-11-14 02:59:12 +01:00
-
name: Publish docs
run: |
2022-11-14 03:05:03 +01:00
cd build/ntfy-docs.github.io
2022-11-14 02:59:12 +01:00
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add docs/
git commit -m "Updated docs"
git push origin main