Merge pull request #80 from mit-dormcon/dependabot/npm_and_yarn/prett… #338
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.7 | |
- 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 | |