We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd5adf commit cb64b61Copy full SHA for cb64b61
1 file changed
.github/workflows/dotnet.yml
@@ -23,7 +23,7 @@ jobs:
23
24
- name: Restore dependencies
25
run: dotnet restore
26
-
+
27
- name: Test
28
run: dotnet test -c Release --verbosity normal
29
@@ -34,7 +34,8 @@ jobs:
34
id: get_version
35
run: |
36
TSABVERSION=$(dotnet publish/TS3AudioBot.dll -V | grep -oP 'Version: \K.*')
37
- echo "tsab_version=$TSABVERSION" >> $GITHUB_ENV
+ echo "Get Version: $TSABVERSION"
38
+ echo "tsab_version=$TSABVERSION" >> "$GITHUB_OUTPUT"
39
40
build_frontend:
41
runs-on: ubuntu-latest
@@ -74,9 +75,6 @@ jobs:
74
75
strategy:
76
matrix:
77
rid: [ "linux-x64", "linux-arm", "linux-arm64", "win-x64" ]
- concurrency:
78
- group: publish_bins
79
- cancel-in-progress: false
80
81
steps:
82
- uses: actions/checkout@v4
0 commit comments