Skip to content

Commit

Permalink
Updated pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
aakatev committed Dec 9, 2020
1 parent 47fa50b commit 1ef8758
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,23 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 and push
id: docker_build
- name: Build Envoy image
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
push: true
context: .
tags: aakatev/envoy-fips:v1.16-latest
load: true

- name: Push Envoy image
run: docker push aakatev/envoy-fips:v1.16-latest

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 1ef8758

Please sign in to comment.