Testing docs workflow (4)

This commit is contained in:
Philipp Heckel 2022-11-13 21:11:51 -05:00
parent f4cb447f0a
commit 18d36e1b30
1 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
name: docs
on: [push, pull_request]
jobs:
build:
docs:
runs-on: ubuntu-latest
steps:
-
@ -20,7 +20,12 @@ jobs:
ls server/docs/
-
name: Copy generated docs
run: rsync -av --delete server/docs/ build/ntfy-docs.github.io/docs/
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/
-
name: Publish docs
run: |