Skip to content

Commit cc572dc

Browse files
committed
Fixed release pipeline (variable expansion)
1 parent ebe00d5 commit cc572dc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ jobs:
163163

164164
steps:
165165
- name: Read version
166+
id: version
166167
run: |
167168
TAG=${{ github.ref_name }}
168169
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
@@ -235,7 +236,7 @@ jobs:
235236
- name: Create release
236237
uses: ncipollo/release-action@v1
237238
with:
238-
name: Reflect ${{ VERSION }}
239+
name: Reflect ${{ steps.version.outputs.VERSION }}
239240
tag: ${{ github.ref_name }}
240241
artifacts: "artifacts/*"
241242
draft: true

0 commit comments

Comments
 (0)