chore(deps): update dependency @types/node to v22.9.2 in package.json… #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation Release | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
name: "Deploy" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: generate .env docs | |
run: scripts/dottie template --file .env.docker --with-disabled docs-customization/template/dot-env.template.tmpl > docs/customize/settings.md | |
- name: build | |
run: docker build -t docker-pixelfed-docs -f Dockerfile.docs . | |
- name: deploy | |
run: docker run --rm -v ${PWD}:/docs docker-pixelfed-docs gh-deploy --force |