We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e271e5 commit ada29d8Copy full SHA for ada29d8
.github/workflows/deploy.yaml
@@ -6,6 +6,7 @@ on:
6
push:
7
branches:
8
- main
9
+ - docs-in-hdb
10
# Allows you to run this workflow manually from the Actions tab
11
workflow_dispatch:
12
@@ -81,7 +82,7 @@ jobs:
81
82
name: Deploy to GitHub Pages
83
runs-on: ubuntu-latest
84
# Only deploy on push to specific branches, not on PRs
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
85
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs-in-hdb')
86
87
permissions:
88
pages: write
0 commit comments