chore(deps): update monero requirement from 0.19 to 0.21 #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create release | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
create_release: | |
name: Create from merged release branch | |
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/') | |
uses: monero-rs/workflows/.github/workflows/[email protected] | |
release_to_crates: | |
name: Publish the new release to crates.io | |
uses: monero-rs/workflows/.github/workflows/[email protected] | |
# Do not run before creating the release is done | |
needs: create_release | |
secrets: | |
cratesio_token: ${{ secrets.H4SH3D_CARGO_REGISTRY_TOKEN }} |