Update MauiMudBlazor.csproj #8
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
name: Create and Publish Visual Studio Project Template | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
create-template: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' # Specify your .NET version | |
- name: Install necessary workloads | |
run: | | |
dotnet workload install maui-android | |
- name: Install necessary tools | |
run: sudo apt-get install -y zip | |
- name: Build the project | |
run: dotnet build --framework net8.0-android | |
- name: Create template package | |
run: dotnet pack --configuration Release --output ./nupkgs | |
- name: Create new branch for template | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git checkout -b template-branch | |
git add ./nupkgs/*.nupkg | |
git commit -m "Add project template package" | |
git push origin template-branch | |
- name: Upload template package as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: project-template | |
path: ./nupkgs/*.nupkg |