# This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go name: Docs on: push: branches: ["main"] paths: - "docs/**" workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 with: lfs: true - name: Set up NodeJS uses: actions/setup-node@v2 with: node-version: "20" - name: Setup pnpm uses: pnpm/action-setup@v4 with: version: 9 - name: Install dependencies run: pnpm install --prefix ./docs - name: Build run: | cd docs pnpm run docs:build ls -la src/.vitepress/dist - name: Fix permissions run: | chmod -c -R +rX "docs/src/.vitepress/dist" | while read line; do echo "::warning title=Invalid file permissions automatically fixed::$line" done - name: Upload static files as artifact id: deployment uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action with: path: docs/src/.vitepress/dist deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} permissions: pages: write id-token: write actions: read runs-on: ubuntu-latest needs: build steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4