Merge pull request #669 from Kong/manual_release_2.8.4 #461
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 & Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Build & Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
image: [alpine, ubuntu, rhel] | |
env: | |
BASE: ${{ matrix.image }} | |
KONG_DOCKER_TAG: kong-${{ matrix.image }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
make build | |
- name: Test | |
shell: 'script -q -e -c "bash {0}"' | |
run: | | |
make test | |
- name: Push RHEL | |
if: ${{ github.event_name == 'create' && github.event.ref_type == 'tag' }} | |
run: | | |
make release-rhel |