Skip to content

Update active.yml

Update active.yml #2

Workflow file for this run

on: push
jobs :
compileTs :
runs-on : ubuntu-latest
steps:
- name: Compile TypeScript
run: tsc
build :
runs-on : ubuntu-latest
needs: compileTs
steps:
- name: build
uses: actions/checkout@v3
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
deploy :
runs-on : ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: dist