Skip to content

Bump github.com/onsi/gomega from 1.30.0 to 1.31.0 (#209) #179

Bump github.com/onsi/gomega from 1.30.0 to 1.31.0 (#209)

Bump github.com/onsi/gomega from 1.30.0 to 1.31.0 (#209) #179

Workflow file for this run

name: Docker Image from master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Docker Login
uses: docker/login-action@v1
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Build the Docker images
run: |
export GITHUB_TAG_NAME=${GITHUB_HEAD_REF##*/}
make dockerimage
make dockerpush