fix: rework fix for #631 to be less likely to cause breaking changes #1149
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: build-alpha | |
| on: | |
| pull_request: | |
| branches: [main, release/*] | |
| push: | |
| branches: [main, release/*] | |
| 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 }} |