Skip to content

Commit

Permalink
Fix MkDocs deployment to GitHub pages (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkudrna committed Aug 9, 2024
1 parent a0c7446 commit 8888290
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Release Management

on:
push:
branches: [ master ]
# branches: [ master ]
branches: [ fix/mkdocs-deploy ]

jobs:
test_and_build:
Expand Down Expand Up @@ -110,14 +111,13 @@ jobs:
name: Deploy docs
permissions:
contents: write
needs: [test_and_build, publish_release_draft_on_version_bump]
if: needs.test_and_build.outputs.version_changed == 'true'
# needs: [test_and_build, publish_release_draft_on_version_bump]
# if: needs.test_and_build.outputs.version_changed == 'true'
needs: [test_and_build]
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false

# Hard-coded username and email for the GitHub bot user
# https://api.github.com/users/github-actions%5Bbot%5D
Expand Down

0 comments on commit 8888290

Please sign in to comment.