Skip to content

Main Build

Main Build #1082

Workflow file for this run

name: Main Build
on:
push:
branches:
- main
schedule:
- cron: '0 1 * * *'
jobs:
main_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build -- --pathprefix=coli-conc.gbv.de --url=https://gbv.github.io
- name: Deployment webhook to update coli-conc.gbv.de
uses: distributhor/workflow-webhook@v3
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
webhook_secret: ${{ secrets.WEBHOOK_SECRET }}