Skip to content

Commit

Permalink
fix armv7 vs arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Oct 14, 2023
1 parent 242cd1d commit a17181b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:latest

ARG TARGETARCH
COPY dolos-Linux-GNU-${TARGETARCH}/dolos-Linux-GNU-${TARGETARCH} /bin/dolos
COPY dolos-Linux-GNU-${TARGETARCH} /bin/dolos
RUN ln -s /bin/dolos /dolos

ENTRYPOINT ["dolos"]
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,30 @@ jobs:
- release_for: Linux-GNU-amd64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
arch: amd64
args: "--locked --release"
bin: dolos

- release_for: Linux-GNU-armv7
- release_for: Linux-GNU-arm64
os: ubuntu-latest
target: "armv7-unknown-linux-gnueabihf"
arch: arm64
args: "--locked --release"
bin: dolos

- release_for: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
arch: amd64
args: "--locked --release"
bin: dolos.exe

- release_for: macOS-x86_64
os: macOS-latest
target: x86_64-apple-darwin
arch: amd64
args: "--locked --release"
bin: dolos

- release_for: macOS-aarch64
os: macOS-latest
target: aarch64-apple-darwin
arch: arm64
args: "--locked --release"
bin: dolos

Expand Down

0 comments on commit a17181b

Please sign in to comment.