Skip to content

update title

update title #107

Workflow file for this run

name: Deploy
on:
push:
branches: [ master,feature/testimp/github-actions ]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-22.04
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: '16.16.0'
cache: yarn
cache-dependency-path: ./website/yarn.lock
- name: git config
run: |
git config --global user.email "jj.y0sh1da@gmail.com"
git config --global user.name "neon-izm"
- name: Deploy to Github Pages
env:
GIT_USER: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
run: |
yarn install --frozen-lockfile
yarn deploy