From cb64b61a16ffec99d73d04eb8ec5d3bea11a09b6 Mon Sep 17 00:00:00 2001 From: Splamy Date: Sat, 13 Jul 2024 23:11:46 +0200 Subject: [PATCH] Fix version gen --- .github/workflows/dotnet.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ac421fd6..daa4b3bb 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,7 +23,7 @@ jobs: - name: Restore dependencies run: dotnet restore - + - name: Test run: dotnet test -c Release --verbosity normal @@ -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 @@ -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