Skip to content

Commit 43ba9c2

Browse files
committed
Not failing on failed package push.
1 parent f69e0ea commit 43ba9c2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/dev-packages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
run: dotnet pack PowerSync/PowerSync.Common -c Release -o ${{ github.workspace }}/output
3737

3838
- name: Run Push For Common
39+
continue-on-error: true
3940
run: dotnet nuget push ${{ github.workspace }}\output\PowerSync.Common*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
4041

4142
- name: Extract MAUI Package Version from CHANGELOG.md
@@ -50,4 +51,5 @@ jobs:
5051
run: dotnet pack PowerSync/PowerSync.Maui -c Release -o ${{ github.workspace }}/output
5152

5253
- name: Run Push For MAUI
54+
continue-on-error: true
5355
run: dotnet nuget push ${{ github.workspace }}\output\PowerSync.Maui*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}

0 commit comments

Comments
 (0)