mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
ceedca4e27
- Use the newest versions to solve the deprecation warning - Remove the cache step as the newest go and node actions have built-in caching - Add the official actions@github.com email address
36 lines
1 KiB
YAML
36 lines
1 KiB
YAML
name: docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
publish-docs:
|
|
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
|
|
path: build/ntfy-docs.github.io
|
|
token: ${{secrets.NTFY_DOCS_PUSH_TOKEN}}
|
|
# Expires after 1 year, re-generate via
|
|
# User -> Settings -> Developer options -> Personal Access Tokens -> Fine Grained Token
|
|
-
|
|
name: Build docs
|
|
run: make docs
|
|
-
|
|
name: Copy generated docs
|
|
run: rsync -av --exclude CNAME --delete server/docs/ build/ntfy-docs.github.io/docs/
|
|
-
|
|
name: Publish docs
|
|
run: |
|
|
cd build/ntfy-docs.github.io
|
|
git config user.name "GitHub Actions Bot"
|
|
git config user.email "<actions@github.com>"
|
|
git add docs/
|
|
git commit -m "Updated docs"
|
|
git push origin main
|