summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..9fa248c
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,20 @@
+name: release
+on:
+ push:
+ tags:
+ - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: rust-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - run: | # Since v2.0.0 the deb package version will have a "-1" suffix. You can disable this by adding --deb-revision="" flag or revision = "" in Cargo metadata. The default suffix is for compliance with Debian's packaging standard.
+ cargo install cargo-deb
+ cargo deb
+ - name: Release
+ uses: softprops/action-gh-release@v1
+ with:
+ files: target/debian/*.deb # /hex/target/debian/hx_0.5.0-1_amd64.deb