mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-23 05:03:13 +00:00
19 lines
375 B
YAML
19 lines
375 B
YAML
name: Continuous Deployment
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish on crates.io
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v3
|
|
- name: Publish
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: publish
|
|
args: --token ${{ secrets.CARGO_TOKEN }}
|