Skip to content

Added makoto's slides #84

Added makoto's slides

Added makoto's slides #84

Workflow file for this run

# Relies on the standard GitHub action setup to deploy to GitHub Pages
# The really specific details are in the steps that generates the index files
# (and the deployment of deno as an underling tool).
# See https://github.com/iherman/display_minutes for more details
name: Generate Index
on:
push:
branches: [main]
paths: ['minutes/**']
# Allows workflow to be triggered 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 one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout/@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Generate the index files
run: |
(cd script; deno run --allow-sys --allow-read --allow-write --allow-env jsr:@iherman/display-minutes/full)
mv script/index.html minutes/index.html
mv script/resolutions.html minutes/resolutions.html
- name: Setup Github Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4