feat: #428 new template with parameters for common features (#438) #545
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: build-alpha | |
on: | |
push: | |
branches: [dev, next] | |
paths-ignore: ['docs/**'] | |
pull_request: | |
branches: [dev, next] | |
paths-ignore: ['docs/**'] | |
workflow_dispatch: | |
jobs: | |
meta: | |
uses: ./.github/workflows/part-compute-version.yml | |
secrets: inherit | |
with: | |
prereleaseSlug: ci | |
build: | |
uses: ./.github/workflows/part-build.yml | |
secrets: inherit | |
needs: meta | |
with: | |
COALESCE_VERSION: ${{ needs.meta.outputs.COALESCE_VERSION }} | |
publish: | |
if: success() && github.event_name == 'push' | |
uses: ./.github/workflows/part-publish.yml | |
needs: build | |
secrets: inherit |