ttrpg-compendium/.forgejo/workflows/publish.yaml

21 lines
441 B
YAML
Raw Normal View History

2024-02-27 00:42:22 +00:00
on: [push]
jobs:
jekyll:
runs-on: docker
container:
image: jekyll/builder:latest
steps:
2024-02-27 01:03:44 +00:00
- uses: actions/checkout@v3
2024-02-27 01:30:44 +00:00
- run: |
ls ${{ github.workspace }}
2024-02-27 01:33:59 +00:00
- run: |
2024-02-27 01:32:17 +00:00
ls ${{ pwd }}
2024-02-27 01:33:59 +00:00
- run: |
2024-02-27 01:32:17 +00:00
cd ${{ github.workspace }}
- name: Update Gems
run: bundle update
- name: Build Site
run: jekyll build
- run: |
ls ${{ github.workspace }}