File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,24 @@ on: workflow_dispatch
7
7
jobs :
8
8
dev-release :
9
9
name : Publish Dev Packages
10
- runs-on : windows-latest
10
+ runs-on : macos-latest # Changed from windows-latest
11
11
12
12
steps :
13
13
- name : Checkout Repository
14
14
uses : actions/checkout@v4
15
+ with :
16
+ ref : ${{ github.ref }}
15
17
16
18
- name : Setup .NET SDK
17
19
uses : actions/setup-dotnet@v4
18
20
with :
19
- dotnet-version : ' 8.0'
21
+ dotnet-version : ' 8.0'
22
+
23
+ - name : Clean workspace
24
+ run : dotnet clean
25
+
26
+ - name : Restore dependencies
27
+ run : dotnet restore --no-cache
20
28
21
29
- name : Download PowerSync extension
22
30
run : dotnet run --project Tools/Setup
Original file line number Diff line number Diff line change 1
1
# PowerSync.Maui Changelog
2
2
3
- ## 0.0.2-dev.10
3
+ ## 0.0.2-dev.11
4
4
- Further resolution of iOS builds.
5
5
6
6
## 0.0.1-alpha.1
You can’t perform that action at this time.
0 commit comments