Skip to content

Adds pyproject.toml using hatch and refactors dockerfile #2

Adds pyproject.toml using hatch and refactors dockerfile

Adds pyproject.toml using hatch and refactors dockerfile #2

Workflow file for this run

name: Build and publish Docker image
on:
push:
branches: [ master, develop ]
tags:
- "*"
pull_request:
branches: [ master, develop ]
jobs:
push_to_registry:
name: Build and push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
path: ./
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: eoepca/cwl-wrapper
tag_with_ref: true