Skip to content

Commit 969c2aa

Browse files
committed
Fixed workflows
1 parent 8f475e0 commit 969c2aa

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/manual_build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: "Manual Build"
44
on: workflow_dispatch
55

66
jobs:
7-
build-test:
7+
build:
88
runs-on: macos-latest
99
steps:
1010
- uses: actions/checkout@v4
@@ -15,8 +15,11 @@ jobs:
1515
- name: Build
1616
run: sh build.sh
1717

18+
- name: Archive .app bundle
19+
run: zip -r SDR++.zip SDR++.app
20+
1821
- name: Upload artifact
1922
uses: actions/upload-artifact@v4
2023
with:
21-
name: apple_arm_binary
22-
path: SDR++.app
24+
name: sdrpp_binary
25+
path: SDR++.zip

.github/workflows/weekly_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: '0 0 * * 0'
77

88
jobs:
9-
build-test:
9+
build:
1010
runs-on: macos-latest
1111
steps:
1212
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)