Generate PDF (En) #3
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: Generate PDF | |
on: | |
workflow_dispatch: | |
jobs: | |
pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Regeneate page list | |
run: yarn run en-pdf-list | |
- name: Update page list | |
run: | | |
grep -v -F -f "pdf/docs.timeplus.com.excludes.txt" "pdf/docs.timeplus.com.txt" > a | |
mv a "pdf/docs.timeplus.com.txt" | |
- name: Regeneate PDF | |
run: yarn run en-pdf-gen | |
- name: Share PDF | |
uses: actions/upload-artifact@v4 | |
with: | |
path: pdf/docs.timeplus.com.pdf |