Skip to content

Commit 4014069

Browse files
committed
Added build step for Maui package.
1 parent de1ed2a commit 4014069

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/dev-packages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ jobs:
4646
MAUI_VERSION=$(awk '/^## [0-9]+\.[0-9]+\.[0-9]+-dev(\.[0-9]+)?$/ {print $2; exit}' PowerSync/PowerSync.Maui/CHANGELOG.md)
4747
echo "Detected Version: $MAUI_VERSION"
4848
echo "VERSION=$MAUI_VERSION" >> $GITHUB_ENV
49-
49+
50+
- name: Build MAUI Project
51+
run: dotnet build PowerSync/PowerSync.Maui -c Release
52+
5053
- name: Run Pack For MAUI
5154
run: dotnet pack PowerSync/PowerSync.Maui -c Release -o ${{ github.workspace }}/output
5255

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646
MAUI_VERSION=$(awk '/^## [0-9]+\.[0-9]+\.[0-9]+/ {print $2; exit}' PowerSync/PowerSync.Maui/CHANGELOG.md)
4747
echo "Detected Version: $MAUI_VERSION"
4848
echo "VERSION=$MAUI_VERSION" >> $GITHUB_ENV
49+
50+
- name: Build MAUI Project
51+
run: dotnet build PowerSync/PowerSync.Maui -c Release
4952

5053
- name: Run Pack For MAUI
5154
run: dotnet pack PowerSync/PowerSync.Maui -c Release -o ${{ github.workspace }}/output

0 commit comments

Comments
 (0)