Skip to content

Merge pull request #177 from openimis/feature/2019 #3

Merge pull request #177 from openimis/feature/2019

Merge pull request #177 from openimis/feature/2019 #3

Workflow file for this run

name: publish develop image
on:
push:
branches:
- develop
jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the mssql DEMO Docker image
run: |
docker build . --tag ghcr.io/openimis/openimis-mssql:develop
docker push ghcr.io/openimis/openimis-mssql:develop