Skip to content

Commit

Permalink
Add different versions of Envoy
Browse files Browse the repository at this point in the history
  • Loading branch information
aakatev committed Dec 9, 2020
1 parent 1ef8758 commit c949515
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Build Enovy and push on DockerHub
name: Build Enovy v1.14 and push on DockerHub
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout source code
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
Expand All @@ -18,11 +19,10 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
tags: aakatev/envoy-fips:v1.16-latest
tags: aakatev/envoy:v1.14-latest
load: true
build-args: |
ENVOY_BRANCH=release/v1.14
- name: Push Envoy image
run: docker push aakatev/envoy-fips:v1.16-latest

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Push Envoy image to DockerHub
run: docker push aakatev/envoy:v1.14-latest
28 changes: 28 additions & 0 deletions .github/workflows/build-v1.15-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Enovy v1.15 and push on DockerHub
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build Envoy image
uses: docker/build-push-action@v2
with:
context: .
tags: aakatev/envoy:v1.15-latest
load: true
build-args: |
ENVOY_BRANCH=release/v1.15
- name: Push Envoy image to DockerHub
run: docker push aakatev/envoy:v1.15-latest
28 changes: 28 additions & 0 deletions .github/workflows/build-v1.16-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Enovy v1.16 and push on DockerHub
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build Envoy image
uses: docker/build-push-action@v2
with:
context: .
tags: aakatev/envoy:v1.16-latest
load: true
build-args: |
ENVOY_BRANCH=release/v1.16
- name: Push Envoy image to DockerHub
run: docker push aakatev/envoy:v1.16-latest

0 comments on commit c949515

Please sign in to comment.