Skip to content

Commit

Permalink
Fix version gen
Browse files Browse the repository at this point in the history
  • Loading branch information
Splamy committed Jul 13, 2024
1 parent 4cd5adf commit cb64b61
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Restore dependencies
run: dotnet restore

- name: Test
run: dotnet test -c Release --verbosity normal

Expand All @@ -34,7 +34,8 @@ jobs:
id: get_version
run: |
TSABVERSION=$(dotnet publish/TS3AudioBot.dll -V | grep -oP 'Version: \K.*')
echo "tsab_version=$TSABVERSION" >> $GITHUB_ENV
echo "Get Version: $TSABVERSION"
echo "tsab_version=$TSABVERSION" >> "$GITHUB_OUTPUT"
build_frontend:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -74,9 +75,6 @@ jobs:
strategy:
matrix:
rid: [ "linux-x64", "linux-arm", "linux-arm64", "win-x64" ]
concurrency:
group: publish_bins
cancel-in-progress: false

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit cb64b61

Please sign in to comment.