Skip to content

Commit fb5ac9d

Browse files
author
nuno
committed
fix ci
1 parent 19f2784 commit fb5ac9d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@ jobs:
2626
needs:
2727
- build
2828
steps:
29-
- run: apt-get update -qq
30-
- run: apt-get install -y -qq devscripts build-essential debhelper lintian dh-make
3129
- uses: actions/checkout@v2
3230
- name: DEB packaging
33-
- run: mk-build-deps --install --remove --tool "apt-get -y -qq"
34-
- run: dpkg-buildpackage -us -uc -b
31+
run: |
32+
apt-get update -qq
33+
apt-get install -y -qq devscripts build-essential debhelper lintian dh-make
34+
mk-build-deps --install --remove --tool "apt-get -y -qq"
35+
dpkg-buildpackage -us -uc -b
3536
- uses: "marvinpinto/action-automatic-releases@latest"
3637
with:
3738
repo_token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)