Skip to content

Merge pull request #5 from cabinetoffice/newStructure #7

Merge pull request #5 from cabinetoffice/newStructure

Merge pull request #5 from cabinetoffice/newStructure #7

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
uses: ./.github/workflows/test.yaml
with:
upload-artifact: true
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4 # v4.1.0
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1 # v1.171.0
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build middleman site
run: bundle exec middleman build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3 # v3.0.1
with:
path: "build"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4 # v4.0.4