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