Skip to content

Update NPM and Python packages - July 2026 (#8) #51

Update NPM and Python packages - July 2026 (#8)

Update NPM and Python packages - July 2026 (#8) #51

Workflow file for this run

name: Deploy # Continuously Deployment
on:
push:
branches:
- "main"
workflow_dispatch: {}
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
env:
SITE_BASE: presentations
jobs:
deploy:
runs-on: ubuntu-latest # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v7 # https://github.com/marketplace/actions/checkout
- name: Setup
uses: ./.github/actions/setup
- name: Build web content
run: task build
- name: Setup Pages
uses: actions/configure-pages@v6 # https://github.com/actions/configure-pages
- name: Upload artifacts
uses: actions/upload-pages-artifact@v5 # https://github.com/actions/upload-pages-artifact
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5 # https://github.com/actions/deploy-pages