From c8f2823725c81605e1bee600ef9b7383cafa5c84 Mon Sep 17 00:00:00 2001 From: Anthony Rabine Date: Sat, 22 Apr 2023 14:02:02 +0200 Subject: [PATCH] Create vitepress.yml --- .github/workflows/vitepress.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/vitepress.yml diff --git a/.github/workflows/vitepress.yml b/.github/workflows/vitepress.yml new file mode 100644 index 0000000..2dddd39 --- /dev/null +++ b/.github/workflows/vitepress.yml @@ -0,0 +1,33 @@ +name: Deploy +on: + workflow_dispatch: {} + push: + branches: + - main +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: npm + - run: npm ci + - name: Build + run: npm run docs:build + - uses: actions/configure-pages@v2 + - uses: actions/upload-pages-artifact@v1 + with: + path: docs/.vitepress/dist + - name: Deploy + id: deployment + uses: actions/deploy-pages@v1