Skip to content

Commit

Permalink
Re/rename mac pkg (#14)
Browse files Browse the repository at this point in the history
* feat: rename intel mac pkg

* chore: add env var to avoid unnecessary aws API calls

more info here: aws/aws-cli#5262 (comment)

* fix: don't use docker since gha runners already have aws cli

* chore: change rename mac pkg job to a composite action

* chore: for testing

* fix: step ids

* Revert "chore: for testing"

This reverts commit cf409ca.

* fix: remove rename mac job from reusable workflow

* fix: don't hardcode sfdx

* fix: add .pkg file extension
  • Loading branch information
RodEsp authored Nov 10, 2022
1 parent 60225d3 commit 5eafb91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/renameMacPkg/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- id: download-and-rename-x64-pkg
shell: bash
run: aws s3 cp s3://dfc-data-production/media/salesforce-cli/${{ inputs.cli }}/channels/${{ inputs.channel }}/sfdx-x64.pkg ./sfdx.pkg
run: aws s3 cp s3://dfc-data-production/media/salesforce-cli/${{ inputs.cli }}/channels/${{ inputs.channel }}/${{ inputs.cli }}-x64.pkg ./${{ inputs.cli }}.pkg
- id: upload-renamed-pkg
shell: bash
run: aws s3 cp ./sfdx.pkg s3://dfc-data-production/media/salesforce-cli/${{ inputs.cli }}/channels/${{ inputs.channel }}/
run: aws s3 cp ./${{ inputs.cli }}.pkg s3://dfc-data-production/media/salesforce-cli/${{ inputs.cli }}/channels/${{ inputs.channel }}/

0 comments on commit 5eafb91

Please sign in to comment.