From 4154d270ae26fcd796578d3322b6f462c5a55313 Mon Sep 17 00:00:00 2001 From: Niek van der Maas Date: Thu, 2 Mar 2023 22:16:46 +0400 Subject: [PATCH] Add pages workflow --- .github/workflows/pages.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..d5bc9f2 --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,32 @@ +name: GitHub build pages + +on: + push: + branches: + - main + +jobs: + deploy: + name: Build and deploy GH pages + runs-on: ubuntu-latest + permissions: + contents: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Build + run: npm ci && npm run publish + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist \ No newline at end of file