Restore comments in news_banner.html (and disable banner) #869
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build the website | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
lfs: false | |
path: website | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
working-directory: website | |
- name: Build site | |
working-directory: website | |
env: | |
JEKYLL_ENV: production | |
run: bundle exec jekyll build | |
- name: Upload site | |
uses: actions/upload-artifact@v4 | |
with: | |
name: site | |
path: website/_site | |
if-no-files-found: error |