Skip to content

TRIVIAL: Bump the gomod group with 2 updates #76

TRIVIAL: Bump the gomod group with 2 updates

TRIVIAL: Bump the gomod group with 2 updates #76

Workflow file for this run

on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
name: Docker
jobs:
docker:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup image metadata
id: docker_meta
uses: wandera/ghaction-docker-meta@v1
with:
images: |
wanderadock/spot-termination-handler
tag-sha: true
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}