Skip to content

Commit

Permalink
chore(ci): rename darwin files
Browse files Browse the repository at this point in the history
  • Loading branch information
nlevee committed Nov 27, 2023
1 parent 445a64b commit 7ed197d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,17 @@ jobs:
cache: true

- name: Build amd64
run: make app-no-sl
run: |
make app-no-sl
mv build/exatorrent build/exatorrent-darwin-amd64
env:
GOOS: darwin
GOARCH: amd64

- name: Build arm64
run: make app-no-sl
run: |
make app-no-sl
mv build/exatorrent build/exatorrent-darwin-arm64
env:
GOOS: darwin
GOARCH: arm64
Expand Down

0 comments on commit 7ed197d

Please sign in to comment.