Skip to content

Commit

Permalink
Remove a misleading arch prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zensey committed Dec 29, 2021
1 parent f233fd3 commit 4ae2348
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags: ["*"]

jobs:
releases-macos-amd64:
releases-macos:
name: Release
runs-on: macos-11

Expand Down Expand Up @@ -69,27 +69,27 @@ jobs:
/usr/bin/codesign --force -s "$MACOS_CERTIFICATE_ID" --timestamp -o runtime ./build/MysteriumLauncher/Mysterium\ Node\ Launcher.app/
# dmg
hdiutil create -format UDZO -srcfolder build/MysteriumLauncher mysterium_launcher_macos_amd64.dmg
hdiutil create -format UDZO -srcfolder build/MysteriumLauncher mysterium_launcher_macos.dmg
- name: Notarize
env:
PRIMARY_BUNDLE_ID: com.mysterium.launcher
APPLE_ID: ${{ secrets.NOTARIZE_EMAIL }}
TARGET_BINARY: ./mysterium_launcher_macos_amd64.dmg
TARGET_BINARY: ./mysterium_launcher_macos.dmg
APP_SPECIFIC_PASSWORD: ${{ secrets.NOTARIZE_APP_SPEC_PWD }}

run: |
# notarize
sh -c ./notarize.sh
#echo Verify
#/usr/bin/codesign -vvvv ./mysterium_launcher_macos_amd64.dmg
#/usr/bin/codesign -vvvv ./mysterium_launcher_macos.dmg
- name: Upload
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
mysterium_launcher_macos_amd64.dmg
mysterium_launcher_macos.dmg
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion make_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ xcodebuild -configuration Release clean build -destination 'platform=macOS' -pro
mv build/Release/ build/MysteriumLauncher
ln -s /Applications build/MysteriumLauncher/Applications

#hdiutil create -format UDZO -srcfolder build/MysteriumLauncher mysterium_launcher_macos_amd64.dmg
#hdiutil create -format UDZO -srcfolder build/MysteriumLauncher mysterium_launcher_macos.dmg

0 comments on commit 4ae2348

Please sign in to comment.