Skip to content

Commit 0312e73

Browse files
committed
v2.4.0
1 parent 59e3de4 commit 0312e73

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
outputs:
1515
release_upload_url: ${{ steps.create_release.outputs.upload_url }}
1616
release_version: ${{ steps.get_version.outputs.version }}
17+
release_version_without_v: ${{ steps.get_version.outputs.version-without-v }}
1718
steps:
1819
- uses: actions/checkout@v2
1920
- name: Get latest release version number
@@ -86,13 +87,15 @@ jobs:
8687
- name: Checkout code
8788
uses: actions/checkout@v2
8889
- name: deb Build
89-
uses: ebbflow-io/cargo-deb-amd64-ubuntu@1.0
90+
run: |
91+
cargo install cargo-deb
92+
cargo deb -- --locked
9093
- name: Upload package
9194
uses: actions/upload-release-asset@v1
9295
env:
9396
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9497
with:
9598
upload_url: ${{ needs.release.outputs.release_upload_url }}
96-
asset_path: target/x86_64-unknown-linux-musl/debian/git-req_${{ needs.release.outputs.release_version }}_amd64.deb
97-
asset_name: git-req_${{ needs.release.outputs.release_version }}_amd64.deb
99+
asset_path: target/debian/git-req_${{ needs.release.outputs.release_version_without_v }}_amd64.deb
100+
asset_name: git-req_${{ needs.release.outputs.release_version_without_v }}_amd64.deb
98101
asset_content_type: application/octet-stream

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-req"
3-
version = "2.3.0"
3+
version = "2.4.0"
44
authors = ["Aru Sahni <aru@arusahni.net>"]
55
description = "Check out merge requests from your GitLab/GitHub hosted repos with ease!"
66
homepage = "https://arusahni.github.io/git-req/"

0 commit comments

Comments
 (0)