File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 11name : publish
22on :
3- release :
3+ workflow_dispatch :
4+ inputs :
5+ tag :
6+ description : build tag
7+ required : false
48jobs :
59 publish-docker-image :
610 runs-on : ubuntu-latest
1418 password : ${{ secrets.GITHUB_TOKEN }}
1519 - name : Build the hello-docker Docker image
1620 run : |
17- docker build . --tag ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/ }
18- docker run ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/ }
19- docker push ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/ }
21+ docker build . --tag ghcr.io/openimis/openimis-mssql:${{ github.event.inputs.tag } }
22+ docker run ghcr.io/openimis/openimis-mssql:${{ github.event.inputs.tag } }
23+ docker push ghcr.io/openimis/openimis-mssql:${{ github.event.inputs.tag } }
You can’t perform that action at this time.
0 commit comments