Cron Generate Pdf #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cron Generate Pdf | |
on: | |
schedule: | |
- cron: '0 12,18,1 * * *' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
environment: Production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.0 | |
- name: Generate PDF | |
run: | | |
npx vitpress-generate-pdf --initialDocURLs="https://doris.apache.org/docs/dev/get-starting/" --paginationSelector=".pagination-nav__link--next" --contentSelector="article" --coverImage="https://cdn.selectdb.com/static/doris_logo_512_4903556647.png" --coverTitle="Apache Doris Docs (English)" --outputPDFFilename="Apache Doris Docs (English).pdf" --tocOnlyH1=true | |
npx vitpress-generate-pdf --initialDocURLs="https://doris.apache.org/zh-CN/docs/dev/get-starting/" --paginationSelector=".pagination-nav__link--next" --contentSelector="article" --coverImage="https://cdn.selectdb.com/static/doris_logo_512_4903556647.png" --coverTitle="Apache Doris Docs (中文)" --outputPDFFilename="Apache Doris Docs (中文).pdf" --tocOnlyH1=true | |
mkdir -p ./build-pdf/assets/files/ | |
cp *.pdf ./build-pdf/assets/files/ | |
ls ./build-pdf/assets/files/ | |
- name: Upload files to OSS | |
uses: ./.github/actions/aliyun-oss-website-action | |
with: | |
accessKeyId: ${{ secrets.ALIYUN_ACCESS_KEY_ID }} | |
accessKeySecret: ${{ secrets.ALIYUN_ACCESS_KEY_SECRET }} | |
bucket: ${{ secrets.ALIYUN_OSS_BUCKET }} | |
# use your own endpoint | |
endpoint: ${{ secrets.ALIYUN_OSS_ENDPOINT }} | |
folder: build-pdf | |
onlyUpload: true |