Skip to content

Cleanup history

Cleanup history #2

Workflow file for this run

---
name: "tagged-release"
on:
push:
tags:
- "v*"
jobs:
publish-crates-io:
name: "Publish to crates.io"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Publish
run: |
cd windsock
cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}