Skip to content

Update about.md

Update about.md #252

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install and Build 🔧
run: |
npm install
npm run build --prefix-path
cp ./CNAME ./public/CNAME
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: public
branch: master
repository-name: ILYMUN/ilymun.github.io
token: ${{ secrets.ACCESS_TOKEN }}