Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanoku committed Apr 16, 2024
1 parent 07b0224 commit 33f6c9f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/cloudflare-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,25 @@ on: [push]
jobs:
publish:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

permissions:
contents: read
deployments: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: build
run: |
npm ci
npm run build
- name: Publish to Cloudflare Pages
id: cloudflare_pages_deploy
Expand Down

0 comments on commit 33f6c9f

Please sign in to comment.