Skip to content

Commit ef01b83

Browse files
authored
Update build-workflow.yml
1 parent 49268f5 commit ef01b83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ jobs:
7373
fi
7474
echo "file=$file" >> $GITHUB_OUTPUT
7575
- name: Build
76-
run: dotnet build ${{ steps.slnx.file }} --configuration Release
76+
run: dotnet build ${{ steps.slnx.outputs.file }} --configuration Release
7777
- name: Start Services
7878
if: hashFiles('docker-compose.yml') != ''
7979
run: ${{ inputs.compose-command }}
8080
- name: Run Tests
81-
run: dotnet test ${{ steps.slnx.file }} --configuration Release --no-build --logger GitHubActions
81+
run: dotnet test ${{ steps.slnx.outputs.file }} --configuration Release --no-build --logger GitHubActions
8282
- name: Package
8383
if: github.event_name != 'pull_request'
84-
run: dotnet pack ${{ steps.slnx.file }} --configuration Release --no-build
84+
run: dotnet pack ${{ steps.slnx.outputs.file }} --configuration Release --no-build
8585
- name: Publish CI Packages
8686
if: github.event_name != 'pull_request' && github.actor != 'dependabot[bot]'
8787
run: |

0 commit comments

Comments
 (0)