Skip to content

Commit

Permalink
Add deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MycroftKang committed Dec 28, 2023
1 parent 4cb53c4 commit 09c46ec
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy

on:
push:
branches:
- main

permissions:
contents: write

jobs:
# Build job
build:
concurrency: ci-${{ github.ref }}
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build

0 comments on commit 09c46ec

Please sign in to comment.