-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,19 @@ jobs: | |
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
- name: Dotnet Tests | ||
# You may pin to the exact commit or the version. | ||
# uses: EasyDesk/action-dotnet-test@228a60327933ff6200594e89a6fa906a69e5f1e6 | ||
uses: EasyDesk/[email protected] | ||
with: | ||
# Additional arguments to pass to 'dotnet test'. | ||
#test-args: # optional | ||
# The build configuration to use (defaults to 'Release'). | ||
#build-configuration: # optional, default is Release | ||
# The path to the project or solution to test (defaults to the current directory). | ||
#path: # optional, default is . | ||
# Whether or not to skip the build using the '--no-build' flag (defaults to true). | ||
skip-build: true # optional, default is true | ||
- name: Publish | ||
run: dotnet publish --configuration Release --no-restore -p:PublishProfile=PublishToSingleSelfContainedExe | ||
- name: read JSON property | ||
|