Skip to content

Bump actions/checkout from 4.1.3 to 4.1.4 #321

Bump actions/checkout from 4.1.3 to 4.1.4

Bump actions/checkout from 4.1.3 to 4.1.4 #321

Workflow file for this run

name: Build and Deploy
# Controls when the workflow will run
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5.1.0
with:
python-version: '3.11'
cache: 'poetry'
- name: Setup packages
# Skips installing dev dependencies
run: poetry install --only main
- name: Process Data
run: poetry run python ./process.py
- name: Upload result
uses: actions/upload-pages-artifact@v3
with:
path: output
deploy:
if: github.ref_name == 'main'
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4