8000 save progress · br-g/openf1@9b05e22 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

save progress

save progress #62

Workflow file for this run

name: "Deploy documentation"
on:
push:
branches: [main, auth-documentation]
jobs:
deploy_documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Slate documentation
run: |
mkdir -p ${{ github.workspace }}/build
docker run --rm \
--user $(id -u):$(id -g) \
--name slate \
-v ${{ github.workspace }}/build:/srv/slate/build \
-v ${{ github.workspace }}/documentation:/srv/slate/source \
slatedocs/slate build
- name: Copy additional webpages
run: |
cp ${{ github.workspace }}/documentation/pages/* build
- name: Deploy documentation to Github Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build
clean: true
0