Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Update codecov/codecov-action action to v3.1.6 #28

Update codecov/codecov-action action to v3.1.6

Update codecov/codecov-action action to v3.1.6 #28

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: mrmilk/spatialtis
- name: DockerHub login
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKER_USER}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}