Skip to content

Commit

Permalink
Merge branch 'develop' into 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abompard committed Jun 8, 2022
2 parents c284051 + 7cd5fe0 commit 62b22a5
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ on:
workflow_dispatch:
push:
branches:
- develop
- 'develop'
- '5.7'
- '6.0'
paths:
- docs/**

Expand All @@ -18,23 +19,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ matrix.branch }}

- name: Install deps
run: pip install click sphinx sqlalchemy_schemadisplay

- name: Build the docs
run: devel/ci/bodhi-ci docs -r ${{ matrix.release }}
run: devel/ci/bodhi-ci docs -r pip

- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: test_results/${{ matrix.release }}-docs/html
target-folder: ${{ matrix.branch }}
folder: test_results/pip-docs/html
target-folder: ${{ env.GITHUB_REF_NAME }}
strategy:
fail-fast: false
matrix:
release: [pip]
branch: ['develop', '5.7']

0 comments on commit 62b22a5

Please sign in to comment.