Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquim Rocha <[email protected]>
  • Loading branch information
joaquimrocha committed Aug 14, 2024
1 parent 56e0bc0 commit 63d97a2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/app-artifacts-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,15 @@ jobs:
- name: Verify Notarization
run: |
cd ./dmgs
ls -la
echo "Verifying notarization of the app: $(ls ./Headlamp*${{ matrix.arch }}*.dmg)"
MOUNT_OUTPUT="$(hdiutil attach ./Headlamp*${{ matrix.arch }}*.dmg)"
# Map x86 to x64
ARCH=${{ matrix.arch }}
if [ "$ARCH" = "x86" ]; then
ARCH="x64"
fi
echo "Verifying notarization of the app: $(ls ./Headlamp*${ARCH}*.dmg)"
MOUNT_OUTPUT="$(hdiutil attach ./Headlamp*${ARCH}*.dmg)"
echo "MOUNT_OUTPUT: $MOUNT_OUTPUT"
VOLUME_NAME="$(echo "$MOUNT_OUTPUT" | grep -o '/Volumes/[^\s]*')"
Expand Down

0 comments on commit 63d97a2

Please sign in to comment.