Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Push CLI Binaries

on:
push:
branches: [master]
branches: [ master ]
workflow_dispatch:

jobs:
Expand All @@ -16,7 +16,7 @@ jobs:
- os: ubuntu-latest
target: linux-amd64
env: linux-native

- os: ubuntu-latest
target: linux-musl-aarch64
env: alpine
Expand All @@ -25,10 +25,6 @@ jobs:
target: windows-amd64
env: windows-native

- os: ubuntu-latest
target: linux-bionic-aarch64
env: termux

steps:
- name: Checkout Source Code
uses: actions/checkout@v4
Expand All @@ -38,7 +34,7 @@ jobs:
if: ${{ matrix.env == 'linux-native' || matrix.env == 'windows-native' }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: '3.11'

# --- LINUX NATIVE BUILD ---
- name: Build Linux AMD64 Binary
Expand Down Expand Up @@ -109,10 +105,10 @@ jobs:
run: |
mkdir -p binaries
find tmp_binaries -type f -exec cp {} binaries/ \;

git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"

git add binaries/
if git diff --staged --quiet; then
echo "No new changes detected in compiled binaries."
Expand Down
Binary file added binaries/warpshare-linux-amd64
Binary file not shown.
Binary file added binaries/warpshare-linux-musl-aarch64
Binary file not shown.
Binary file added binaries/warpshare-windows-amd64.exe
Binary file not shown.
Loading