linutil/.github/workflows/linutil.yml

63 lines
1.6 KiB
YAML
Raw Normal View History

name: LinUtil Release
on:
push:
branches: ["main"]
permissions:
contents: write
packages: write
env:
CARGO_TERM_COLOR: always
jobs:
linutil_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2024-08-20 22:09:08 +01:00
- name: Cache Cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-registry-
2024-08-20 22:09:08 +01:00
- name: Cache Cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-index-
2024-08-20 22:09:08 +01:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
2024-08-20 22:09:08 +01:00
2024-07-30 22:04:31 +01:00
- name: Install cross-rs for cross-compilation
run: cargo install cross
2024-08-20 22:09:08 +01:00
2024-07-30 22:04:31 +01:00
- name: Build x86_64 binary
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl
2024-08-20 22:09:08 +01:00
2024-07-31 11:42:27 +01:00
- name: Move binaries to build directory
run: |
mv build/x86_64-unknown-linux-musl/release/linutil build/linutil
2024-08-20 22:09:08 +01:00
2024-07-31 20:11:44 +01:00
- name: Pull latest changes
2024-07-31 20:04:20 +01:00
run: |
2024-07-31 20:11:44 +01:00
git config --global user.email "github-actions@github.com"
git config --global user.name "GitHub Actions"
git pull origin main
2024-08-20 22:09:08 +01:00
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Commit Linutil
2024-08-20 22:16:52 +01:00
file_pattern: "build/linutil"
2024-08-20 22:46:59 +01:00
add_options: '--force'
2024-08-20 22:39:13 +01:00
push_options: '--force'
2024-08-20 22:16:06 +01:00
if: success()