Skip to content

Multi branch deployment strategy attempt #16

Multi branch deployment strategy attempt

Multi branch deployment strategy attempt #16

Workflow file for this run

name: Deploy Jekyll site to Pages (Testing)
on:
push:
branches:
- main
- testing
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
cache-version: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:

Check failure on line 42 in .github/workflows/pages.yml

View workflow run for this annotation

GitHub Actions / Deploy Jekyll site to Pages (Testing)

Invalid workflow file

The workflow is not valid. .github/workflows/pages.yml (Line: 42, Col: 1): Unexpected value 'deploy'
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
branch: ${{ github.ref == 'refs/heads/main' && 'gh-pages' || 'gh-pages-testing' }}