Skip to content

Commit 6bf0b8a

Browse files
committed
ci: update beta workflow to use Debug build directory for code signing and artifact archiving
1 parent c414b42 commit 6bf0b8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Verify code signing
3030
run: |
31-
cd ./build_output/Build/Products/Release
31+
cd ./build_output/Build/Products/Debug
3232
codesign --deep -vvv --verify Micmute.app
3333
if [ $? -eq 0 ]; then
3434
echo "Code signing verification succeeded."
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Archive artifact
4242
run: |
43-
cd ./build_output/Build/Products/Release
43+
cd ./build_output/Build/Products/Debug
4444
ditto -c -k --sequesterRsrc --keepParent Micmute.app Micmute-Beta.zip
4545
mv Micmute-Beta.zip $GITHUB_WORKSPACE/Micmute-Beta.zip
4646
@@ -57,7 +57,7 @@ jobs:
5757
./generate_appcast --private-key ./private_key.pem --download-url-prefix "https://github.com/rokartur/Micmute/releases/latest/download/" $GITHUB_WORKSPACE
5858

5959
mv appcast.xml $GITHUB_WORKSPACE/appcast.xml
60-
60+
6161
- name: Commit appcast.xml
6262
run: |
6363
cd $GITHUB_WORKSPACE

0 commit comments

Comments
 (0)