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 21549cc commit de1052eCopy full SHA for de1052e
.github/workflows/mkdocs-release.yml
@@ -18,14 +18,14 @@ jobs:
18
steps:
19
- name: Extract branch name (push)
20
if: ${{ github.event_name == 'push' }}
21
- run: echo "BRANCH=${GITHUB_REF#refs/heads/}}" >> "$GITHUB_ENV"
+ run: echo "BRANCH=${GITHUB_REF#refs/heads/}" >> "$GITHUB_ENV"
22
23
- name: Extract branch name (repository_dispatch)
24
if: ${{ github.event_name == 'repository_dispatch' }}
25
run: echo "BRANCH=${{ github.event.client_payload.branch }}" >> "$GITHUB_ENV"
26
27
- name: Extract version from branch name
28
- run: echo "HOPSWORKS_VERSION=${BRANCH#branch-}}" >> "$GITHUB_ENV"
+ run: echo "HOPSWORKS_VERSION=${BRANCH#branch-}" >> "$GITHUB_ENV"
29
30
- name: Checkout main repo
31
uses: actions/checkout@v4
0 commit comments