mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
2f3c49ed0f
* use vhs for previews * some improvements * some improvements 2 * forgot about those somehow * and those * better commit message
111 lines
3.5 KiB
YAML
111 lines
3.5 KiB
YAML
name: LinUtil Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
linutil_build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install musl-tools
|
|
run: sudo apt-get update && sudo apt-get install musl-tools
|
|
|
|
- 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-
|
|
|
|
- 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-
|
|
|
|
- name: Install Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: x86_64-unknown-linux-musl
|
|
|
|
- name: Install cross-rs for cross-compilation
|
|
run: cargo install cross
|
|
|
|
- name: Build x86_64 binary
|
|
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl --all-features
|
|
|
|
- name: Build aarch64 binary
|
|
run: cross build --target-dir=build --release --verbose --target=aarch64-unknown-linux-musl --all-features
|
|
|
|
- name: Move binaries to build directory
|
|
run: |
|
|
mv build/x86_64-unknown-linux-musl/release/linutil build/linutil
|
|
mv build/aarch64-unknown-linux-musl/release/linutil build/linutil-aarch64
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: Commit Linutil
|
|
file_pattern: "build/linutil build/linutil-aarch64"
|
|
add_options: '--force'
|
|
if: success()
|
|
|
|
- name: Extract Version
|
|
id: extract_version
|
|
run: |
|
|
version=$(date +"%Y.%m.%d")
|
|
echo "version=$version" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Create and Upload Release
|
|
id: create_release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
tag_name: ${{ env.version }}
|
|
name: Pre-Release ${{ env.version }}
|
|
body: |
|
|
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)
|
|
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil-aarch64)
|
|
|
|
append_body: true
|
|
generate_release_notes: true
|
|
files: |
|
|
./build/linutil
|
|
./build/linutil-aarch64
|
|
./start.sh
|
|
./startdev.sh
|
|
prerelease: true
|
|
env:
|
|
version: ${{ env.version }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Install vhs
|
|
run: |
|
|
wget 'https://github.com/charmbracelet/vhs/releases/download/v0.8.0/vhs_0.8.0_amd64.deb'
|
|
sudo apt install -y ffmpeg
|
|
sudo snap install ttyd --classic
|
|
sudo dpkg -i 'vhs_0.8.0_amd64.deb'
|
|
|
|
- name: Build the preview
|
|
run: |
|
|
export PATH="$(pwd)/build:$PATH"
|
|
vhs docs/assets/preview.tape -o docs/assets/preview.gif
|
|
|
|
- name: Upload the preview
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: Preview for ${{ env.version }}
|
|
file_pattern: "docs/assets/preview.gif"
|
|
add_options: "--force"
|
|
if: success()
|