Skip to content

Commit

Permalink
Refactor build process to update Linux binary paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitthi committed Sep 29, 2024
1 parent 094448d commit bf45c7c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/Ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
- name: Build Linux binary aarch64-gnu
run: |
cross build --target aarch64-unknown-linux-gnu --release
mkdir -p build/linux-gnu/
cp target/aarch64-unknown-linux-gnu/release/easy-proxy build/linux-gnu/
mkdir -p build/linux/
cp target/aarch64-unknown-linux-gnu/release/easy-proxy build/linux/aarch64-easy-proxy-linux-gnu
# - name: Build Linux binary aarch64-musl
# run: |
Expand All @@ -57,8 +57,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
build/linux-gnu/easy-proxy
build/linux-musl/easy-proxy
build/linux-gnu/aarch64-easy-proxy-linux-gnu
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: v${{ steps.extract_version.outputs.version }}
name: v${{ steps.extract_version.outputs.version }}

0 comments on commit bf45c7c

Please sign in to comment.