Skip to content

Commit d830293

Browse files
committed
- correct ci/cd script
1 parent 8e803e0 commit d830293

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/publish-nuget.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ jobs:
1414
if: ${{ inputs.SHOULD_RUN }}
1515
steps:
1616
- uses: actions/checkout@v3
17-
- name: Set default Xamarin SDK versions
18-
run: |
19-
$VM_ASSETS/select-xamarin-sdk-v2.sh --mono=6.12 --android=13.0
20-
17+
2118
- name: Set .netrc
2219
run: |
2320
echo $NETRC >> ~/.netrc
@@ -26,15 +23,26 @@ jobs:
2623
env:
2724
NETRC : ${{secrets.NETRC}}
2825

29-
- name: Setup .NET Core SDK 7.0.306
26+
- name: Setup .NET Core SDK 8.0
3027
uses: actions/setup-dotnet@v3
3128
with:
32-
dotnet-version: '7.0.306'
29+
dotnet-version: '8.0'
3330

3431
- name: Install ios workload
3532
run: |
3633
dotnet workload install ios android maui maui-ios maui-android
3734
35+
- name: Setup Java 17
36+
uses: actions/setup-java@v3
37+
with:
38+
distribution: 'microsoft'
39+
java-version: '17'
40+
41+
- name: Xcode Select Version
42+
uses: mobiledevops/xcode-select-version-action@v1
43+
with:
44+
xcode-select-version: 15.1
45+
3846
- name: Create MauiProgram.dev.cs
3947
run: |
4048
cp src/qs/MapboxMauiQs/MauiProgram.dev.cs.example src/qs/MapboxMauiQs/MauiProgram.dev.cs

0 commit comments

Comments
 (0)