From 6c82c89cf7d6dca87cbd588102cd2d9637370c37 Mon Sep 17 00:00:00 2001 From: ydah Date: Fri, 5 Apr 2024 08:08:33 +0900 Subject: [PATCH] Add GitHub Actions workflow for Nuxt generate and deploy to GitHub Pages --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cf43913 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: Nuxt generate and deploy to GitHub Pages +on: + push: + branches: + - main +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "20" + - run: bun install + - run: bun run generate + - name: deploy + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.ref == 'refs/heads/main' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist