Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Commit

Permalink
add distinction for armhf/arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpaul25 committed Jul 13, 2023
1 parent 5f0dfae commit 0a7bfa4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/make_and_publish_pkgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ on:
arch:
type: choice
options:
- x86_64
- amd64
- arm64
- armhf
os:
type: choice
options:
Expand All @@ -32,7 +33,7 @@ jobs:
uses: AllStarLink/asl_workflows/.github/workflows/ephemeral_ec2_run-this.yml@develop
with:
run-this: ./docker/dockerbuild.sh -a ${{ inputs.arch == 'x86_64' && 'amd64' || inputs.arch == 'arm64' && 'armhf' || null }} -o ${{ inputs.os }} ${{ (inputs.commit-versioning == 'yes' || (inputs.commit-versioning == 'default' && inputs.deployment-environment == 'development')) && '-r' || null }}
arch: ${{inputs.arch}}
arch: ${{ inputs.arch == 'armhf' && 'arm64' || inputs.arch == 'amd64' && 'x86_64' || inputs.arch }}
artifact-path: 'build/*'
secrets: inherit
publish-packages:
Expand Down

0 comments on commit 0a7bfa4

Please sign in to comment.