diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..5a59ba6a --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,22 @@ +name: ✅ Build and Deploy Vitepress Doc Pages to GitHub Pages +on: + push: + branches: + - master +jobs: + build-and-deploy: + concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. + runs-on: ubuntu-latest + steps: + - name: Perform check out + uses: actions/checkout@v3 + + - name: ⚒️ Install dependencies and build/compile the site # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. + run: | + yarn install --frozen-lockfile + yarn lint + yarn docs:build + - name: 🪗 Deploy to GitHub pages + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: dist # The folder the action should deploy. \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 895f583a..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: ✅ Build and Deploy Vitepress Doc Pages to GitHub Pages -on: - workflow_dispatch: {} - push: - branches: - - master -jobs: - deploy: - runs-on: ubuntu-latest - permissions: - pages: write - id-token: write - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: yarn - - name: ⚒️ Install dependencies - run: yarn install --frozen-lockfile - - name: ☕ Build dtatic pages - run: yarn docs:build - - uses: actions/configure-pages@v2 - - uses: actions/upload-pages-artifact@v1 - with: - path: dist - - name: 🪗 Deploy to GitHub pages - id: deployment - uses: actions/deploy-pages@v1