Fix readme links #596
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: Rust Automatic Release and Publish | |
# Automatically creates a GitHub release and publishes the latest Rust crate versions to crates.io when a release PR is merged. | |
on: | |
pull_request: | |
branches: | |
- main | |
- support/v* | |
types: [closed] | |
jobs: | |
call-create-release-workflow: | |
if: github.event.pull_request.merged == true | |
# owner/repository of workflow has to be static, see https://git.luolix.topmunity/t/env-variables-in-uses/17466 | |
uses: iotaledger/identity.rs/.github/workflows/shared-release.yml@main | |
with: | |
changelog-config-path: ./.github/.github_changelog_generator | |
pre-release-tag-regex: ^v[0-9]+\.[0-9]+\.[0-9]+-(?<pre_release>\w+)\.\d+$ | |
main-release-tag-regex: ^v[0-9]+\.[0-9]+\.[0-9]+$ | |
create-github-release: true | |
secrets: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
release: | |
runs-on: ubuntu-latest | |
needs: call-create-release-workflow | |
if: ${{ needs.call-create-release-workflow.outputs.is-release }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Dummy Publish to crates.io | |
# TODO: implement proper publish | |
run: echo beep boop, pretending to publish |