Skip to content

docs: 📝 add readme for the crate #7

docs: 📝 add readme for the crate

docs: 📝 add readme for the crate #7

Workflow file for this run

on:
push:
# Pattern matched against refs/tags
tags:
- "api-*" # Push events to every tag not containing /
workflow_dispatch:
name: Publish
jobs:
publish:
name: Publish on Crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Publish
run: cd projects/api && cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}