Skip to content

Commit 9fc3f6e

Browse files
authored
Fix actions for deploying documentation (#13)
## Changes <!-- Summary of your changes that are easy to understand. Add screenshots when necessary --> This PR fixes GitHub actions for deploying flowx documentation to GitHub pages. ### Linked issues <!-- DOC: Link issue with a keyword: close, closes, closed, fix, fixes, fixed, resolve, resolves, resolved. See https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword --> N/A ### Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [x] manually tested - [ ] added unit tests - [ ] added integration tests
1 parent 0a4431c commit 9fc3f6e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/docs-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ jobs:
5353
deploy:
5454
name: Deploy to GitHub Pages
5555
needs: build
56-
runs-on: ubuntu-latest
56+
runs-on:
57+
group: databricks-solutions-protected-runner-group
58+
labels: linux-ubuntu-latest
5759

5860
permissions:
5961
pages: write

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ yq = [
4949

5050
[build-system]
5151
requires = [
52-
"hatchling>=1.90,<2.0"
52+
"hatchling>=1.27,<2.0"
5353
]
5454
build-backend = "hatchling.build"
5555

0 commit comments

Comments
 (0)