Skip to content

Create LICENSE.md

Create LICENSE.md #8

Workflow file for this run

name: Publish Docker image
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
- uses: actions/checkout@v2
with:
fetch-depth: 2
- run: git checkout HEAD^
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
context: runner
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: castorsoftware/duets:latest
tag_with_ref: true