Skip to content

Have site being built from actions rather than branch #1

Have site being built from actions rather than branch

Have site being built from actions rather than branch #1

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 17 in .github/workflows/jekyll-docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/jekyll-docker.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v4
- name: Go to docs dir
run: cd docs
- name: Install jekyll gems
run: bundle install
-name: Build out
run: bundle exec jekyll b
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
path: ../_site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4