Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

deploy (manual)

deploy (manual) #17

Workflow file for this run

name: deploy (manual)
on:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
env:
NEW_INFECTED_URL: ${{ secrets.NEW_INFECTED_URL }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install dependencies 👨🏻‍💻
run: npm ci
- name: Run build 🏗
run: npm run build
- name: Run export 🚢
run: npm run export
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: out # The folder the action should deploy.