Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Create publish.yml

Create publish.yml #1

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish crate
run: cargo publish --token ${TOKEN}
env:
TOKEN: ${{ secrets.CRATES_IO_ERSPAN_RS_PUBLISH_UPDATE_TOKEN }}