Skip to content

Commit

Permalink
add platform
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 11, 2024
1 parent a7ed6c3 commit dce5623
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
name: Build and Release Dash Evo Tool

# Define when the workflow should be triggered
on:
push:
tags:
- 'v*'
- 'v*-dev.*'
release:
types:
- published
workflow_dispatch:
inputs:
tag:
description: "Version (i.e. v0.1.0)"
required: true

jobs:
build-and-release:
name: Build and Release Dash Evo Tool
Expand Down Expand Up @@ -48,7 +31,7 @@ jobs:
- name: Build in ARM64 Docker container (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'arm64'
run: |
docker run --rm -v $(pwd):/build -w /build arm64v8/ubuntu:latest /bin/bash -c "
docker run --platform linux/arm64 --rm -v $(pwd):/build -w /build arm64v8/ubuntu:latest /bin/bash -c "
apt-get update &&
apt-get install -y build-essential gcc-aarch64-linux-gnu libssl-dev curl unzip &&
Expand Down

0 comments on commit dce5623

Please sign in to comment.