Skip to content

Commit

Permalink
Updated ci for individual binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodingdong committed Nov 25, 2024
1 parent 1c378cc commit 6da9012
Showing 1 changed file with 39 additions and 3 deletions.
42 changes: 39 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,44 @@ jobs:
run: |
make compile
- name: Upload Artifacts
- name: Upload Linux ARM binary
uses: actions/upload-artifact@v3
with:
name: platform-builds
path: bin/*
name: deraph-linux-arm
path: bin/deraph-linux-arm

- name: Upload Linux ARM64 binary
uses: actions/upload-artifact@v3
with:
name: deraph-linux-arm64
path: bin/deraph-linux-arm64

- name: Upload Windows ARM binary
uses: actions/upload-artifact@v3
with:
name: deraph-windows-arm
path: bin/deraph-windows-arm.exe

- name: Upload Windows ARM64 binary
uses: actions/upload-artifact@v3
with:
name: deraph-windows-arm64
path: bin/deraph-windows-arm64.exe

- name: Upload Windows AMD64 binary
uses: actions/upload-artifact@v3
with:
name: deraph-windows-amd64
path: bin/deraph-windows-amd64.exe

- name: Upload Darwin ARM64 binary
uses: actions/upload-artifact@v3
with:
name: deraph-darwin-arm64
path: bin/deraph-darwin-arm64

- name: Upload Darwin AMD64 binary
uses: actions/upload-artifact@v3
with:
name: deraph-darwin-amd64
path: bin/deraph-darwin-amd64

0 comments on commit 6da9012

Please sign in to comment.