Skip to content

Commit fa33eb8

Browse files
committed
Using mac runner.
1 parent 500a98b commit fa33eb8

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/dev-packages.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,24 @@ on: workflow_dispatch
77
jobs:
88
dev-release:
99
name: Publish Dev Packages
10-
runs-on: windows-latest
10+
runs-on: macos-latest # Changed from windows-latest
1111

1212
steps:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v4
15+
with:
16+
ref: ${{ github.ref }}
1517

1618
- name: Setup .NET SDK
1719
uses: actions/setup-dotnet@v4
1820
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
2028

2129
- name: Download PowerSync extension
2230
run: dotnet run --project Tools/Setup

PowerSync/PowerSync.Maui/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PowerSync.Maui Changelog
22

3-
## 0.0.2-dev.10
3+
## 0.0.2-dev.11
44
- Further resolution of iOS builds.
55

66
## 0.0.1-alpha.1

0 commit comments

Comments
 (0)