This commit is contained in:
2023-08-31 21:54:27 +03:00
parent ca0e7d960b
commit b885d494fd

View File

@@ -10,7 +10,7 @@ env:
jobs: jobs:
build: build:
name: Build static binary name: Build static binary
runs-on: self-hosted runs-on: ubuntu-latest
permissions: permissions:
contents: write contents: write
steps: steps:
@@ -43,10 +43,13 @@ jobs:
id: download_binary id: download_binary
with: with:
name: ${{ env.BINARY_NAME }}_x86_64-linux-musl name: ${{ env.BINARY_NAME }}_x86_64-linux-musl
path: target/x86_64-unknown-linux-musl/release/rexec path: ${{ env.BINARY_NAME }}_x86_64-linux-musl
- name: Move binary
run: |
mkdir -p target/x86_64-unknown-linux-musl/release/
mv ${{ env.BINARY_NAME }}_x86_64-linux-musl/rexec target/x86_64-unknown-linux-musl/release/
- name: Install build deps - name: Install build deps
run: | run: |
#pacman -Syu --noconfirm rustup musl git tree
ls -lah ls -lah
makepkg -f makepkg -f
ls -lah ls -lah