Skip to content

Commit 25dd72f

Browse files
authored
Create docker-dev-cd.yml
1 parent acc8a07 commit 25dd72f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/docker-dev-cd.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: publish develop image
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
7+
jobs:
8+
publish-docker-image:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Login to GitHub Container Registry
13+
uses: docker/login-action@v1
14+
with:
15+
registry: ghcr.io
16+
username: ${{ github.actor }}
17+
password: ${{ secrets.GITHUB_TOKEN }}
18+
- name: Build the mssql DEMO Docker image
19+
run: |
20+
docker build . --tag ghcr.io/openimis/openimis-mssql:develop
21+
docker push ghcr.io/openimis/openimis-mssql:develop

0 commit comments

Comments
 (0)