Skip to content

Commit

Permalink
chore: Create publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
blelump authored Aug 8, 2024
1 parent 1a52ecb commit b7e89fe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish to crates.io

on:
push:
tags:
- "v*"

jobs:
publish_keriox_core:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
path: "./keriox_core"
registry-token: ${{ secrets.CRATES_TOKEN }}

0 comments on commit b7e89fe

Please sign in to comment.