Skip to content

Remove installbuilder from macos release artifact #785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
May 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
let gon generate the dmg installer and upload it
  • Loading branch information
umbynos committed May 19, 2023
commit a976fe96f51e5171865d7dcbd4242a028728a599
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,11 @@ jobs:
deep = true
}

# generate a Disk Image
dmg {
output_path = "ArduinoCreateAgent_${{ matrix.arch }}_notarized.dmg"
volume_name = "ArduinoCreateAgent"
}
# Ask Gon for zip output to force notarization process to take place.
# The CI will upload the zip output
zip {
Expand Down Expand Up @@ -317,11 +322,11 @@ jobs:
aws s3 cp darwin-${{ matrix.arch }}-bundle.json s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.TARGET }}
if: ${{ needs.build.outputs.prerelease != 'true' }}

- name: Upload artifact
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ArduinoCreateAgent.app_${{ matrix.arch }}_notarized
path: ArduinoCreateAgent.app_${{ matrix.arch }}_notarized.zip
path: ArduinoCreateAgent*_${{ matrix.arch }}_notarized.* #TODO remove zip upload (not needed here)
if-no-files-found: error

# This job is responsible for generating the installers (using installbuilder)
Expand Down