-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* .net6 upgrade * add gh action * checkout submodules * remove appveyor * Update action versions The used versions of the github actions are now eol, so updating to more recent ones. --------- Co-authored-by: Bernhard Dick <[email protected]>
- Loading branch information
1 parent
daee8e0
commit 1407941
Showing
4 changed files
with
34 additions
and
49 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: dotnet publish workflow | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '6.0' | ||
- run: 'dotnet restore' | ||
- run: 'dotnet test -c Release' | ||
- run: 'dotnet publish -o publish -c Release src/ommstats/ommstats.csproj' | ||
- name: Upload result | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: publish | ||
path: publish |
This file was deleted.
Oops, something went wrong.
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
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