Skip to content

Commit

Permalink
Make Colima arch explicit
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Camata <[email protected]>
  • Loading branch information
douglascamata committed Dec 15, 2023
1 parent 06813ff commit 3100ef1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ runs:
COLIMA_NETWORK_ADDRESS: ${{ inputs.colima-network-address }}
run: |
echo "::group::Starting Colima"
COLIMA_ARGS=""
ARCH="$(uname -m)"
if [$ARCH == "arm64"]
then
ARCH="aarch64"
fi
COLIMA_ARGS="--arch $ARCH"
if [ $COLIMA_NETWORK_ADDRESS == "true" ]
then
COLIMA_ARGS="$COLIMA_ARGS --network-address"
Expand Down

0 comments on commit 3100ef1

Please sign in to comment.