Skip to content

Commit de1052e

Browse files
committed
Fix release action
1 parent 21549cc commit de1052e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mkdocs-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
steps:
1919
- name: Extract branch name (push)
2020
if: ${{ github.event_name == 'push' }}
21-
run: echo "BRANCH=${GITHUB_REF#refs/heads/}}" >> "$GITHUB_ENV"
21+
run: echo "BRANCH=${GITHUB_REF#refs/heads/}" >> "$GITHUB_ENV"
2222

2323
- name: Extract branch name (repository_dispatch)
2424
if: ${{ github.event_name == 'repository_dispatch' }}
2525
run: echo "BRANCH=${{ github.event.client_payload.branch }}" >> "$GITHUB_ENV"
2626

2727
- name: Extract version from branch name
28-
run: echo "HOPSWORKS_VERSION=${BRANCH#branch-}}" >> "$GITHUB_ENV"
28+
run: echo "HOPSWORKS_VERSION=${BRANCH#branch-}" >> "$GITHUB_ENV"
2929

3030
- name: Checkout main repo
3131
uses: actions/checkout@v4

0 commit comments

Comments
 (0)