Skip to content

Commit

Permalink
Adds Actions to publish crate
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Sep 18, 2024
1 parent ce95576 commit 272a1c6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CD
on:
push:
tags:
- '*'
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Publish
run: cargo publish

0 comments on commit 272a1c6

Please sign in to comment.