[Backport 7.x] Build dists in Docker during make.sh assemble

Co-authored-by: Seth Michael Larson <[email protected]>
This commit is contained in:
github-actions[bot]
2021-03-30 10:04:48 -05:00
committed by GitHub
co-authored by Seth Michael Larson
parent a313b8773a
commit 45a430e7c9
3 changed files with 189 additions and 32 deletions
+29
View File
@@ -0,0 +1,29 @@
name: Unified Release
on:
pull_request:
paths-ignore:
- 'README.md'
push:
paths-ignore:
- 'README.md'
branches:
- main
- master
- '[0-9]+.[0-9]+'
- '[0-9]+.x'
jobs:
assemble:
name: Assemble
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
stack_version: ['7.x-SNAPSHOT']
steps:
- name: Checkout
uses: actions/checkout@v2
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
name: Assemble ${{ matrix.stack_version }}