Skip to content

Commit cb64b61

Browse files
committed
Fix version gen
1 parent 4cd5adf commit cb64b61

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Restore dependencies
2525
run: dotnet restore
26-
26+
2727
- name: Test
2828
run: dotnet test -c Release --verbosity normal
2929

@@ -34,7 +34,8 @@ jobs:
3434
id: get_version
3535
run: |
3636
TSABVERSION=$(dotnet publish/TS3AudioBot.dll -V | grep -oP 'Version: \K.*')
37-
echo "tsab_version=$TSABVERSION" >> $GITHUB_ENV
37+
echo "Get Version: $TSABVERSION"
38+
echo "tsab_version=$TSABVERSION" >> "$GITHUB_OUTPUT"
3839
3940
build_frontend:
4041
runs-on: ubuntu-latest
@@ -74,9 +75,6 @@ jobs:
7475
strategy:
7576
matrix:
7677
rid: [ "linux-x64", "linux-arm", "linux-arm64", "win-x64" ]
77-
concurrency:
78-
group: publish_bins
79-
cancel-in-progress: false
8078

8179
steps:
8280
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)