We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd1f3c2 commit c0d1e63Copy full SHA for c0d1e63
.github/workflows/docker-dev-cd.yml
@@ -0,0 +1,23 @@
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 and push develop Docker image
19
+ uses: docker/build-push-action@v2
20
21
+ context: .
22
+ push: true
23
+ tags: openimis/openimis-pgsql:develop
0 commit comments