Skip to content

read ly pkey from env for server #7

read ly pkey from env for server

read ly pkey from env for server #7

Workflow file for this run

name: mdbook to github pages
permissions:
contents: write
on:
push:
paths:
- book/**
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: '0.4.10'
# mdbook-version: 'latest'
# care: the -d path is relative to the book source directory.
- run: mdbook build -d ../htdocs-book book/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./htdocs-book