diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..6b37c25 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,42 @@ +# tutorial: https://github.com/LayZeeDK/github-pages-docusaurus +name: documentation + +on: + pull_request: + branches: [main] + push: + branches: [main] + +jobs: + deploy: + permissions: + id-token: 'write' + pages: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + # 👇 Build steps + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + - name: Install dependencies + run: yarn install --frozen-lockfile --non-interactive + - name: Build + run: yarn build + # 👆 Build steps + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + # 👇 Specify build output path + path: build + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2