Skip to content

Commit

Permalink
crates action
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Jun 17, 2024
1 parent ebd98ab commit a331037
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/crates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Crates publish

on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit a331037

Please sign in to comment.