Skip to content

Build-only

Build-only #46

Workflow file for this run

name: Build-only
on:
workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.2
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Update Externals
run: |
git submodule update --init --remote
- name: Build and test with Jekyll
run: |
bundle exec jekyll build --verbose --trace --config "_config.yml,_config_prod.yml" --profile
- name: Generate list of resources
run: |
find ./_site -type f | sed 's,^\.\/_site,,' | sort > ./_site/manifest.txt
- name: check output
run: |
ls -la _site