Skip to content

fix ci

fix ci #19

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: date
- name: Build Release
run: date
packging:
runs-on: ubuntu-latest
needs:
- build
steps:
- uses: actions/checkout@v2
- name: DEB packaging
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq devscripts build-essential debhelper lintian dh-make equivs
mk-build-deps --install --remove --tool "apt-get -y -qq"
dpkg-buildpackage -us -uc -b
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
../*.deb