Renaming caused breakages in API versioning code, so removed that part because we will anyways be removing the whole Elastic API versioning logic in near future. Also removed unused variable in .github/workflows/integration.yml Signed-off-by: Rushi Agrawal <[email protected]>
29 lines
514 B
YAML
29 lines
514 B
YAML
name: Unified Release
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
branches:
|
|
- "*"
|
|
push:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
assemble:
|
|
name: Assemble
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
stack_version: ['1.0.0']
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
|
|
name: Assemble ${{ matrix.stack_version }}
|