Skip to content

Commit

Permalink
Add update-data workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-psb committed Jun 25, 2024
1 parent 1dc99e7 commit aab9dbb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/update-data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Update Data Branch"

on:
workflow_dispatch:

jobs:
update-data:
runs-on: "ubuntu-20.04"
steps:
- uses: "actions/checkout@v4"
with:
ref: docs-data
- run: |
git branch --show-current
- run: "update-data.sh"
# - name: "Set up Python"
# uses: "actions/setup-python@v5"
# with:
# python-version: "3.11"
# - name: "Install Test Dependencies"
# run: |
# pip install -r doc_requirements.txt
# - name: Build docs
# run: make docs

0 comments on commit aab9dbb

Please sign in to comment.