-
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.
* upgrade to net6.0 * add github action * run gh action on master & pr * remove appveyor * Update action versions * Update ImageSharp dependency to version 2.1.6� The (beta) version of ImageSharp that has been used is not able to open the PNG image with .NET 6. Thus updating to a more recent version fixing this. --------- Co-authored-by: Bernhard Dick <[email protected]>
- Loading branch information
1 parent
c27ce56
commit 3fd791f
Showing
4 changed files
with
24 additions
and
24 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,21 @@ | ||
name: dotnet publish workflow | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '6.0' | ||
- run: 'dotnet restore' | ||
- run: 'dotnet publish -o publish -c Release src/grafana-logo.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