Skip to content

Commit

Permalink
ci(repo): Fix for publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Jan 24, 2025
1 parent 65c1946 commit 10c95ee
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish_release.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Publish on Crates.io

on:
release:
types:
- published
push:
branches:
- main
# release:
# types:
# - published

env:
CI: true
Expand All @@ -13,6 +16,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: write
pull-requests: write

jobs:
publish-crates:
name: Publish on Crates.io
Expand Down

0 comments on commit 10c95ee

Please sign in to comment.