Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lbuesching committed Jan 11, 2024
1 parent c621393 commit da45f1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --configuration {{ inputs.build_configuration }} --no-restore
run: dotnet build --configuration ${{ inputs.build_configuration }} --no-restore
- name: Upload Sage Build
uses: actions/upload-artifact@v3
with:
name: SageWebhost
path: Sage.Webhost/bin/{{ inputs.build_configuration }}/net8.0/
path: Sage.Webhost/bin/${{ inputs.build_configuration }}/net8.0/
retention-days: 7
- name: Test
working-directory: ./src
run: dotnet test --no-build --verbosity normal {{ inputs.test_args }}
run: dotnet test --no-build --verbosity normal ${{ inputs.test_args }}

0 comments on commit da45f1d

Please sign in to comment.