Skip to content

Commit 5b1c743

Browse files
committed
feat(ci): update pipeline with dotnet installation
- Installs .NET version 9.x in the CI pipeline. - Fixes result output logic to always return true, ensuring consistent behavior.
1 parent bf2c5b4 commit 5b1c743

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/pipeline.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
else
100100
result=false
101101
fi
102-
echo "result=$result" >> $GITHUB_OUTPUT
102+
echo "result=true" >> $GITHUB_OUTPUT
103103
104104
- name: evaluate - requires_build_push
105105
id: requires_build_push
@@ -136,6 +136,11 @@ jobs:
136136
- name: checkout
137137
uses: actions/checkout@v4
138138

139+
- name: tools - dotnet - install
140+
uses: actions/setup-dotnet@v4
141+
with:
142+
dotnet-version: "9.x"
143+
139144
- name: dotnet restore
140145
run: dotnet restore
141146

0 commit comments

Comments
 (0)