Skip to content

chore(deps): update docker.io/hashicorp/terraform docker tag to v1.5.5 #116

chore(deps): update docker.io/hashicorp/terraform docker tag to v1.5.5

chore(deps): update docker.io/hashicorp/terraform docker tag to v1.5.5 #116

Workflow file for this run

name: Docker Build
on:
push:
branches:
- master
jobs:
build-ocp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch external dependencies
run: make fetch DEPLOYMENT_TYPE=ocp OPENSHIFT_RELEASE=$(make latest_version DEPLOYMENT_TYPE=ocp)
- name: Build the Docker image
run: make build DEPLOYMENT_TYPE=ocp OPENSHIFT_RELEASE=$(make latest_version DEPLOYMENT_TYPE=ocp)
- name: Test Docker image
run: make test DEPLOYMENT_TYPE=ocp OPENSHIFT_RELEASE=$(make latest_version DEPLOYMENT_TYPE=ocp)
- name: Login to Docker Registry
run: docker login -u ${{ secrets.REGISTRY_USERNAME }} -p ${{ secrets.REGISTRY_PASSWORD }} ${{ secrets.REGISTRY_HOST }}
- name: Push Docker image
run: make push DEPLOYMENT_TYPE=ocp OPENSHIFT_RELEASE=$(make latest_version DEPLOYMENT_TYPE=ocp)