Skip to content

Commit fffd105

Browse files
committed
ci(github-actions): enforce bash shell and correct csproj path in publish workflow
1 parent 34fa22e commit fffd105

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

  • EasyExtractUnitypackageRework/EasyExtractCrossPlatform/.github/workflows

EasyExtractUnitypackageRework/EasyExtractCrossPlatform/.github/workflows/publish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ jobs:
1414
build-and-release:
1515
name: Build for ${{ matrix.os }}
1616
runs-on: ${{ matrix.os }}
17-
# FIX 1: Wir zwingen alle Systeme (auch Windows) Bash zu nutzen.
18-
# Das fixt den "ParserError" mit den Backslashes \
17+
# WICHTIG: Erzwingt Bash auf allen Systemen (fixet den Windows ParserError)
1918
defaults:
2019
run:
2120
shell: bash
@@ -57,10 +56,9 @@ jobs:
5756
echo "VERSION=$CLEAN_VERSION" >> $GITHUB_ENV
5857
5958
- name: Publish DotNet
60-
# FIX 2: Pfad zur csproj angepasst!
61-
# Falls dein Repo-Root anders ist, pass "EasyExtractCrossPlatform/" an.
59+
# FIX: Hier ist der korrekte, volle Pfad zu deiner .csproj
6260
run: |
63-
dotnet publish EasyExtractCrossPlatform/EasyExtractCrossPlatform.csproj \
61+
dotnet publish EasyExtractUnitypackageRework/EasyExtractCrossPlatform/EasyExtractCrossPlatform.csproj \
6462
-c Release \
6563
-r ${{ matrix.rid }} \
6664
--self-contained \

0 commit comments

Comments
 (0)