This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
remove extraneous file #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
jobs: | |
# Build job | |
build: | |
if: github.actor == 'stuyk' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
- name: Install and Build 🔧 | |
run: | | |
npm install | |
npm i --save-dev [email protected] [email protected] [email protected] [email protected] | |
npm run docs | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs | |
- name: Invoke Documentation Build | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: deploy.yml | |
repo: stuyk/athena-docs-latest | |
token: ${{ secrets.DOCS_PAT }} | |
ref: 'main' |