-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WinUI3 * Update zebble * Fix csproj * Github action --------- Co-authored-by: Reza Talebi <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
8 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,25 @@ | ||
name: Publishes a new package of Zebble.Carousel to the nuget.org | ||
on: | ||
push: | ||
branches: [ master ] | ||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
configuration: [ Release ] | ||
runs-on: windows-2022 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '8.x' | ||
|
||
- name: Install MAUI | ||
run: dotnet workload install ios android maui --source https://aka.ms/dotnet8/nuget/index.json --source https://api.nuget.org/v3/index.json | ||
|
||
- name: Install Zebble's CLI tools | ||
run: dotnet tool install --global zebble-build | ||
|
||
- name: Publish a new Zebble.Carousel package | ||
run: zebble-build update-plugin --api-key ${{secrets.NUGET_API_KEY}} --publish |
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