Skip to content

Bump the ci-dependencies group with 1 update #26

Bump the ci-dependencies group with 1 update

Bump the ci-dependencies group with 1 update #26

Workflow file for this run

name: "Deploy to GitHub Pages"
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * */7'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: "Install dependencies"
run: python -m pip install -r scripts/requirements.txt
- name: "Fetch the list of repos"
run: python scripts/get_wiki_repos.py
- name: "Generate site"
run: npx @11ty/eleventy --input=site --output=_site
- name: "Upload artifact"
uses: actions/upload-pages-artifact@0252fc4ba7626f0298f0cf00902a25c6afc77fa8 # v3.0.0
with:
path: ./_site
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
id-token: write
steps:
- name: "Deploy to GitHub Pages"
id: deployment
uses: actions/deploy-pages@87c3283f01cd6fe19a0ab93a23b2f6fcba5a8e42 # v4.0.3