Skip to content

feat: 🎸 migrate to ratatui #6

feat: 🎸 migrate to ratatui

feat: 🎸 migrate to ratatui #6

Workflow file for this run

name: Publish CD
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install stable toolchain 💿
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: sudo apt-get -y update && sudo apt-get -y install libpcap-dev
- name: Publish to crate 🎉
run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}