build from gh action

This commit is contained in:
Chris Titus 2024-07-18 17:15:07 -05:00
parent 996141adff
commit ec160ae3b6
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ jobs:
body: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)" body: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)"
append_body: false append_body: false
files: | files: |
./release/linutil ./build/release/linutil
./start.sh ./start.sh
prerelease: true prerelease: true
generate_release_notes: true generate_release_notes: true

View File

@ -35,10 +35,10 @@ jobs:
with: with:
toolchain: stable toolchain: stable
- name: Build - name: Build
run: cargo build --out-dir=release --release --verbose run: cargo build --target-dir=build --release --verbose
- uses: stefanzweifel/git-auto-commit-action@v5 - uses: stefanzweifel/git-auto-commit-action@v5
with: with:
commit_message: Commit Linutil commit_message: Commit Linutil
file_pattern: 'target/release/linutil' file_pattern: 'build/release/linutil'
if: success() if: success()