Skip to content

Fix event time to follow correct timezone #14

Fix event time to follow correct timezone

Fix event time to follow correct timezone #14

Workflow file for this run

name: Build and Deploy Jekyll site
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Fetch Events from Peoply API
run: node .github/fetch-events.js
- name: Adjust Event Times For DST
run: python script/adjust_event_time.py
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4.3"
bundler-cache: true
- name: Install Dependencies
run: bundle install
- name: Make cibuild.sh executable
run: chmod +x ./script/cibuild.sh
- name: Build Jekyll site
run: ./script/cibuild.sh
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: >-
github.event_name == 'push' &&
(github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4