Files
php-qrcode/.github/workflows/docs.yml
T
codemasher f7e5e2e806 :octocat:
2021-11-18 13:05:14 +01:00

31 lines
613 B
YAML

# from https://github.com/PHPMailer/PHPMailer
on:
push:
branches:
- main
name: "Docs"
jobs:
build_and_publish:
name: "Build and publish Docs"
runs-on: ubuntu-latest
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: "Build Docs"
uses: ./.github/actions/build-docs
- name: "Publish Docs to gh-pages"
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: .
CLEAN: true