Publish C++ Artifacts for Version v0.90.0 #5
This file contains hidden or 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 C++ Artifacts | |
| run-name: Publish C++ Artifacts for Version ${{ inputs.substrait_version }} | |
| concurrency: | |
| group: cpp-publish | |
| cancel-in-progress: false | |
| on: | |
| workflow_call: | |
| inputs: | |
| substrait_version: | |
| description: Substrait version to publish artifacts for | |
| required: true | |
| type: string | |
| alpha: | |
| description: Publish an auto-incrementing alpha pre-release (-alpha, -alpha.1, ...) | |
| required: false | |
| default: false | |
| type: boolean | |
| workflow_dispatch: | |
| inputs: | |
| substrait_version: | |
| description: Substrait version to publish artifacts for | |
| required: true | |
| type: string | |
| alpha: | |
| description: Publish an auto-incrementing alpha pre-release (-alpha, -alpha.1, ...) | |
| required: false | |
| default: false | |
| type: boolean | |
| jobs: | |
| publish-cpp-protobuf: | |
| uses: ./.github/workflows/cpp_protobuf.yml | |
| secrets: inherit | |
| with: | |
| substrait_version: ${{ inputs.substrait_version }} | |
| alpha: ${{ inputs.alpha }} | |
| publish-cpp-antlr: | |
| uses: ./.github/workflows/cpp_antlr.yml | |
| secrets: inherit | |
| with: | |
| substrait_version: ${{ inputs.substrait_version }} | |
| alpha: ${{ inputs.alpha }} | |
| publish-cpp-extensions: | |
| uses: ./.github/workflows/cpp_extensions.yml | |
| secrets: inherit | |
| with: | |
| substrait_version: ${{ inputs.substrait_version }} | |
| alpha: ${{ inputs.alpha }} |