Skip to content

Commit

Permalink
feat: cargo deb
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Mar 12, 2024
1 parent 94dd8ee commit bbcbf80
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/debian-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: docker-ci

on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust
uses: dsherret/rust-toolchain-file@v1

- name: Rust Cache
uses: Swatinem/rust-cache@v2

- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install cargo-deb
run: cargo install cargo-deb

- name: Setup deb-s3
uses: alw3ys/setup-deb-s3@v1

- name: Cargo deb
run: cargo deb --package doseid

0 comments on commit bbcbf80

Please sign in to comment.