Skip to content

Commit 33059d4

Browse files
committed
Build of dmg is skipped in debug builds, use correct release-dmg target
1 parent 111cb57 commit 33059d4

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows/build-syncthing-macos-debug-dmg-on-demand.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build Syncthing macOS unnotarized Release DMG (On-Demand)
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build-release-dmg:
8+
name: Build unnotarized Release DMG
9+
runs-on: macos-12
10+
steps:
11+
- uses: actions/checkout@v3
12+
with:
13+
fetch-depth: 0
14+
15+
- name: Build release target
16+
run: |
17+
make release-dmg
18+
19+
- name: Archive artifacts
20+
uses: actions/upload-artifact@v3
21+
with:
22+
name: syncthing-macos-dmg-release-dmg
23+
path: Build/Products/Release/*.dmg

0 commit comments

Comments
 (0)