Skip to content

Commit cddfe2d

Browse files
authored
Update release_on_push.yml
1 parent 012a220 commit cddfe2d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release_on_push.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818

1919
- name: Extract Version from fxmanifest.lua
2020
id: version
21-
run: echo "VERSION=v$(grep -oP "version\s*'\K[^']+" it_bridge/fxmanifest.lua)" >> $GITHUB_ENV
21+
run: |
22+
VERSION=$(grep -oP "version\s*'\K[^']+" it_bridge/fxmanifest.lua)
23+
echo "VERSION=v$VERSION" >> $GITHUB_ENV
24+
2225
2326
- name: Create ZIP Archive
2427
run: zip -r "[it_bridge_pack].zip" . -x "*.git*"

0 commit comments

Comments
 (0)