Publish Release #116
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: Publish Release | |
# Every time we trigger the workflow on a branch. | |
on: | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Check | |
uses: ./.github/workflows/check.yml | |
publish_to_maven_central: | |
name: Publish to Maven Central | |
uses: ./.github/workflows/publish_to_maven_central.yml | |
secrets: inherit | |
needs: check | |
create_github_release: | |
name: Create GitHub Release | |
uses: ./.github/workflows/create_github_release.yml | |
secrets: inherit | |
needs: publish_to_maven_central |