-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove actions for MAUI on Build and Release workflow (#484)
* Remove actions for MAUI on Build and Release workflow * Update all actions to latest and Remove actions for MAUI on Unit testing workflow
- Loading branch information
Showing
2 changed files
with
6 additions
and
20 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 |
---|---|---|
|
@@ -14,19 +14,11 @@ jobs: | |
outputs: | ||
version: ${{ steps.set-version-to-output.outputs.version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
- name: Install MAUI | ||
run: dotnet workload install maui | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
- name: Update version number | ||
shell: pwsh | ||
run: | | ||
|
@@ -62,7 +54,7 @@ jobs: | |
needs: build | ||
steps: | ||
- name: Download archives | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
- name: Publish packages | ||
|
@@ -73,7 +65,7 @@ jobs: | |
needs: build | ||
steps: | ||
- name: Download archives | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
|
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