You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,15 @@ on:
7
7
8
8
jobs:
9
9
build:
10
-
runs-on: rust-latest
10
+
name: Debian Release
11
+
runs-on: ubuntu-latest
11
12
steps:
12
13
- name: Checkout
13
14
uses: actions/checkout@v4
14
-
- 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.
15
+
- name: Cargo Install Run
16
+
uses: dtolnay/rust-toolchain@stable
17
+
- run: |
18
+
# 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.
0 commit comments