Skip to content

chore(deps): update dependency gitlab-org/gitlab-runner to v17.11.4 #99

chore(deps): update dependency gitlab-org/gitlab-runner to v17.11.4

chore(deps): update dependency gitlab-org/gitlab-runner to v17.11.4 #99

Workflow file for this run

name: Docker Image
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker image
run: make docker-build
- name: Log in to Docker Hub
if: startsWith(github.ref, 'refs/tags/')
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Push Docker image
if: startsWith(github.ref, 'refs/tags/')
run: make docker-push