docs: Add docs for the new feature of accessKey and secretKey (#631) #564
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
env: | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: true | |
swap-storage: true | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/yarn | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install and Build 🔧 | |
run: | | |
yarn install | |
yarn crowdin:sync | |
yarn build | |
- name: Build PDF prerequisites 🔨 | |
run: | | |
sudo apt install fonts-noto -y | |
curl https://www.princexml.com/download/prince-14.2-linux-generic-x86_64.tar.gz -O | |
tar zxf prince-14.2-linux-generic-x86_64.tar.gz | |
cd prince-14.2-linux-generic-x86_64 | |
yes "" | sudo ./install.sh | |
# https://github.com/signcl/docusaurus-prince-pdf | |
- name: Generate PDF 🖨️ | |
run: | | |
yarn serve > /dev/null & | |
sleep 3s | |
npx docusaurus-prince-pdf --include-index -u http://localhost:3000/docs/overview --output pdf/Casdoor_Docs.pdf | |
npx docusaurus-prince-pdf --include-index -u http://localhost:3000/zh/docs/overview --list-only | |
wget https://gist.githubusercontent.com/Selflocking/7a07d91d34ee227c93d2d8f583f981e3/raw/996a610b96e7e1f42e06ec555528f3427c2fb647/print.css | |
prince --no-warn-css --style=print.css --input-list=./pdf/localhost-zh-docs-overview.txt -o pdf/Casdoor_Docs_zh.pdf | |
rm pdf/*.txt | |
mv pdf/* build/pdf/ -f | |
- name: Clean up 🧹 | |
run: | | |
rm -rf prince-14.2-linux-generic-x86_64* | |
yarn cache clean | |
npm cache clean --force | |
sudo apt-get clean | |
- name: Upload results 📤 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: PDFs | |
path: build/pdf/ | |
if-no-files-found: error | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
ssh-key: ${{ secrets.DEPLOY_KEY }} | |
git-config-name: ${{ secrets.GH_NAME }} | |
git-config-email: ${{ secrets.GH_EMAIL }} | |
repository-name: casdoor/casdoor.github.io | |
branch: master # The deploy branch. | |
folder: build # The deploy folder. |