ttrpg-compendium/.forgejo/workflows/publish.yaml
Bill Niblock 1eec651554
Some checks failed
/ jekyll (push) Failing after 27s
[Actions] Fidgeting
2024-02-26 20:35:25 -05:00

20 lines
437 B
YAML

on: [push]
jobs:
jekyll:
runs-on: docker
container:
image: jekyll/builder:latest
steps:
- uses: actions/checkout@v3
- run: |
ls ${{ github.workspace }}
- run: |
ls $(pwd)
- run: |
cd ${{ github.workspace }}
- name: Update Gems
run: bundle update
- name: Build Site
run: jekyll build
- run: |
ls ${{ github.workspace }}