Skip to content

add schedule action to update website #4

add schedule action to update website

add schedule action to update website #4

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.yml
name: Deploy website
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# 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:
# Build and upload the GitHub Pages artifact.
build:

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

View workflow run for this annotation

GitHub Actions / Deploy website

Invalid workflow file

The workflow is not valid. .github/workflows/pages.yml (Line: 29, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs:
- recent-redbox-release
- static-files
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
# Generate an include file showing details for
# the latest ReDBox release.
- name: Cache modified files
id: cache-modified-files
uses: actions/cache@v4.0.2
env:
cache-name: cache-modified-files
with:
path: |
.support/rblatest.json
_includes/latest_release.html
static/js/bootstrap.bundle.min.js
static/css/bootstrap.min.css
static/css/bootstrap-icons.min.css
static/css/fonts/bootstrap-icons.woff
static/css/fonts/bootstrap-icons.woff2
key: cache-modified-files
- 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
- uses: actions/setup-node@v4.0.2
with:
node-version: 20
cache: 'npm'
- name: Update the static files
run: .support/update_static_files.sh
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
# Increment this number if you need to re-download cached gems
cache-version: 0
- name: Setup Pages
uses: actions/configure-pages@v5.0.0
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Upload artifact
if: ${{ ! startsWith(github.ref, 'refs/heads/dependabot') }}
uses: actions/upload-pages-artifact@v3.0.1
# Deployment job
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
if: ${{ ! startsWith(github.ref, 'refs/heads/dependabot') }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5