Skip to content

Commit 034b820

Browse files
committed
Fixes
1 parent 1569736 commit 034b820

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ jobs:
1717
- name: Checkout lua-vosk
1818
uses: actions/checkout@v3
1919
with:
20+
fetch-depth: 0
2021
path: luavosk
2122

2223
- name: Minor preparations
2324
run: sudo apt install gcc-aarch64-linux-gnu mingw-w64
2425

2526
- name: Get previous tag
27+
working-directory: luavosk
2628
id: prevtag
2729
shell: bash
2830
run: |
29-
echo "tag=$(GIT.EXE describe --abbrev=0 --tags ${{ github.ref_name }}^)" >> $GITHUB_OUTPUT
31+
echo "::tag::$(git describe --abbrev=0 --tags ${{ github.ref_name }}^)"
3032
3133
- name: Init LuaJIT
3234
working-directory: luavosk/misc
@@ -58,8 +60,7 @@ jobs:
5860
- name: Create release
5961
uses: softprops/action-gh-release@v1
6062
with:
61-
prerelease: true
62-
name: Pre-release ${{ github.ref_name }}
63+
name: Release ${{ github.ref_name }}
6364
body: "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ steps.prevtag.outputs.tag }}...${{ github.ref_name }}"
6465
files: |
6566
./luavosk/misc/out/windows-x64.zip

0 commit comments

Comments
 (0)