Skip to content

Update instance.ts

Update instance.ts #15

Workflow file for this run

name: AutoDeploy
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
BRANCH: page
FOLDER: dist
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}