This repository was archived by the owner on Jun 18, 2024. It is now read-only.
add docs for implementation settings #307
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 | |
jobs: | |
check-md-links: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: yarn | |
- run: yarn check-md | |
build-and-deploy: | |
runs-on: ubuntu-20.04 | |
needs: check-md-links | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: jenkey2011/[email protected] | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
BUILD_SCRIPT: yarn && yarn build | |
BUILD_DIR: src/.vuepress/dist | |
CNAME: docs.platform.planqk.de |