Skip to content

Deploy website

Deploy website #1

Workflow file for this run

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
# From: https://github.com/actions/starter-workflows/blob/647cac4f347894582e3fd841b84b0b2c6485b23d/pages/jekyll-gh-pages.yml
name: Deploy website
on:
# Runs on pushes targeting the default branch
push:
branches: [$default-branch]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Generate an include file showing details for
# the latest ReDBox release.
recent-redbox-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache ReDBox latest release files
id: cache-redbox-latest-release-file
uses: actions/cache@v3
env:
cache-name: cache-redbox-latest-release-file
with:
path: |
.support/rblatest.json
_includes/latest_release.html
key: cache-redbox-latest-release-file
- if: ${{ steps.cache-redbox-latest-release-file.outputs.cache-hit != 'true' }}
name: Create latest ReDBox release details if not cached
run: .support/generate_latest_release_info.sh
static-files:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Update the static files
run: .support/update_static_files.sh
# Build and upload the GitHub Pages artifact.
build:
runs-on: ubuntu-latest
needs:
- recent-redbox-release
- static-files
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
# Deployment job
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4