mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-23 00:03:23 +00:00
31 lines
614 B
YAML
31 lines
614 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
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: dist
|
|
CLEAN: true
|