Skip to content

Commit

Permalink
Add publish to creates functionality to the gha
Browse files Browse the repository at this point in the history
  • Loading branch information
mlieberman85 committed Apr 15, 2024
1 parent ef4aee7 commit 97d34be
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@ jobs:
run: |
hashes=$(sha256sum target/release/skootrs | base64 -w0)
echo "hashes=$hashes" >> $GITHUB_OUTPUT
- name: Setup cargo release
if: startsWith(github.ref, 'refs/tags/')
run: cargo install cargo-release
- name: Public to crates.io
if: startsWith(github.ref, 'refs/tags/')
run: |
cargo release -p skootrs-model --execute
cargo release -p skootrs-lib --execute
cargo release -p skootrs-statestore --execute
cargo release -p skootrs-rest --execute
cargo release -p skootrs-bin --execute
sbom:
permissions:
Expand Down

0 comments on commit 97d34be

Please sign in to comment.