Skip to content

add programs from U Potsdam and U Göttingen #22

add programs from U Potsdam and U Göttingen

add programs from U Potsdam and U Göttingen #22

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
lfs: false
path: website
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Build
working-directory: website
run: make build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: site
path: website/_site
if-no-files-found: error