Skip to content

build-resources

build-resources #437

name: build-resources
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # every day at 00:00
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/zerocluster/node
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAXMIND_LICENSE_KEY: ${{ secrets.MAXMIND_LICENSE_KEY }}
steps:
- uses: actions/checkout@v4
- run: |
npm i --ignore-scripts
npm run build
shell: bash