wonderfulfrog.com/.forgejo/workflows/deploy.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 5: cannot unmarshal !!str `DARK_VI...` into map[string]string

23 lines
469 B
YAML

name: Build and Deploy
on: [push]
env:
DARK_VISITORS_ACCESS_TOKEN="${{ secrets.DARK_VISITORS_ACCESS_TOKEN }}"
jobs:
build_and_deploy:
runs-on: docker
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Build the website
run: npm run build