We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b3b3e6 commit 493f947Copy full SHA for 493f947
1 file changed
.github/workflows/publish-new-release.yml
@@ -19,15 +19,15 @@ jobs:
19
BRANCH_NAME="${{ github.event.pull_request.head.ref }}"
20
VERSION=${BRANCH_NAME#release/}
21
22
- echo "::set-env name=RELEASE_VERSION::$VERSION"
+ echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
23
24
- name: Extract version from branch name (for hotfix branches)
25
if: startsWith(github.event.pull_request.head.ref, 'hotfix/')
26
run: |
27
28
VERSION=${BRANCH_NAME#hotfix/}
29
30
31
32
- name: Create Release
33
uses: thomaseizinger/create-release@1.0.0
0 commit comments