Skip to content

Commit

Permalink
gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromedockes committed Jul 30, 2024
1 parent ed857a1 commit 23449b3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build

permissions:
contents: write

on:
push:
branches:
- main

jobs:
'build and deploy':
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install dependencies
run: |
pip install "git+https://github.com/skrub-data/skrub.git@main"
- name: Build the site
run: |
python build.py
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build

0 comments on commit 23449b3

Please sign in to comment.