Skip to content

Getting Started: Update preview build in release-notes.md #1812

Getting Started: Update preview build in release-notes.md

Getting Started: Update preview build in release-notes.md #1812

Workflow file for this run

name: ci
on:
push:
branches:
- deploy
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install --user --no-warn-script-location --disable-pip-version-check -U git+https://${GH_TOKEN}@github.com/photoprism/mkdocs-material-insiders.git
- run: pip install --user --no-warn-script-location --disable-pip-version-check -U -r requirements.txt
- run: mkdocs gh-deploy --force --config-file mkdocs.deploy.yml