Skip to content

[PAGE] Apply the function to compare the same date #26

[PAGE] Apply the function to compare the same date

[PAGE] Apply the function to compare the same date #26

Workflow file for this run

name: GitHub Pages Deploy
on:
push:
branches:
- master # branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest # 가상머신
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run : npm ci
- name: Build 🔧
run: npm run build
- run: touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: out
claen: true