diff --git a/.github/workflows/deploy-to-pages.yml b/.github/workflows/deploy-to-pages.yml new file mode 100644 index 0000000..baefdcc --- /dev/null +++ b/.github/workflows/deploy-to-pages.yml @@ -0,0 +1,33 @@ +name: Build and Deploy +on: + push: + branches: + - main + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + cache: 'npm' + + - name: Install npm packages + run: npm ci + working-directory: ./example + + - name: Build + run: npm run build + working-directory: ./example + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./example/dist \ No newline at end of file