Skip to content

Commit

Permalink
Merge pull request #110 from nsoranzo/fix_publishdocs
Browse files Browse the repository at this point in the history
Fix publishdocs GitHub workflow
  • Loading branch information
mvdbeek authored Dec 2, 2024
2 parents 7afc066 + 5af033a commit 53abe0b
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/publishdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -21,10 +21,7 @@ jobs:
SKIP_JAVA=1 SKIP_TYPESCRIPT=1 bash build_schema.sh
- name: Deploy Docs
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'galaxyproject'
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
ACCESS_TOKEN: ${{ secrets.GH_PAT }}
BASE_BRANCH: master
BRANCH: gh-pages
FOLDER: dist/schema
folder: dist/schema

0 comments on commit 53abe0b

Please sign in to comment.