Test
All checks were successful
Run Tests on Code / run-tests (push) Successful in 11s
Build binary file and bundle packages / test (pull_request) Successful in 11s
Build binary file and bundle packages / build (pull_request) Successful in 25s
Build binary file and bundle packages / test-env (pull_request) Successful in 0s
All checks were successful
Run Tests on Code / run-tests (push) Successful in 11s
Build binary file and bundle packages / test (pull_request) Successful in 11s
Build binary file and bundle packages / build (pull_request) Successful in 25s
Build binary file and bundle packages / test-env (pull_request) Successful in 0s
This commit is contained in:
parent
30b635ef91
commit
2ddf5faaa2
1 changed files with 4 additions and 2 deletions
|
@ -55,14 +55,16 @@ jobs:
|
|||
- name: Bundle .deb package
|
||||
id: deb_bundle
|
||||
run: |
|
||||
cargo deb
|
||||
cargo deb;
|
||||
DEBIAN_REF=$(echo ${{ github.ref_name }} | tr - \~)
|
||||
echo "debian_ref=$DEBIAN_REF" >> $GITHUB_OUTPUT
|
||||
echo GITHUB_OUTPUT = $GITHUB_OUTPUT
|
||||
echo DEBIAN_REF: $DEBIAN_REF
|
||||
DEBIAN_REV=-$(cat Cargo.toml | grep -E "(^|\|)revision =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
||||
echo "debian_rev=$DEBIAN_REV" >> ${{ env.GITHUB_OUTPUT }}
|
||||
echo DEBIAN_REV: $DEBIAN_REV
|
||||
DEBIAN_NAME=-$(cat Cargo.toml | grep -E "(^|\|)name =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
||||
echo "debian_name=$DEBIAN_NAME" >> ${{ env.GITHUB_OUTPUT }}
|
||||
echo DEBIAN_NAME: $DEBIAN_NAME
|
||||
mv target/debian/${{ DEBIAN_NAME }}_${{ DEBIAN_REF }}${{ DEBIAN_REV }}_amd64.deb dist/${{ DEBIAN_NAME }}_${{ DEBIAN_REF }}${{ DEBIAN_REV }}_amd64.deb
|
||||
|
||||
- name: Uploading Build Artifact
|
||||
|
|
Loading…
Reference in a new issue