Skip to content

chore(project): release v1.2.3 #26

chore(project): release v1.2.3

chore(project): release v1.2.3 #26

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches: [ main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Create Node Environment
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install and build project
run: |
npm install
npm run build-only
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}