From 3e887320fd2f0dbe18d394df3057439bd2e964c3 Mon Sep 17 00:00:00 2001 From: Reinder Nijhoff Date: Tue, 30 Apr 2024 09:35:35 +0200 Subject: [PATCH] Create deploy-to-pages.yml --- .github/workflows/deploy-to-pages.yml | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/deploy-to-pages.yml 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