We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a182849 + 788e909 commit 1a6ed99Copy full SHA for 1a6ed99
.github/workflows/docker.yml
@@ -1,6 +1,5 @@
1
name: publish
2
on:
3
- pull_request:
4
workflow_dispatch:
5
inputs:
6
tag:
@@ -20,6 +19,5 @@ jobs:
20
19
password: ${{ secrets.GITHUB_TOKEN }}
21
- name: Build the pgsql Docker image
22
run: |
23
- TAG_INPUT=${{ github.event.inputs.name }}
24
- docker build . --tag ghcr.io/openimis/openimis-pgsql:${TAG_INPUT:-"latest"}
25
- docker push ghcr.io/openimis/openimis-pgsql:${TAG_INPUT:-"latest"}
+ docker build . --tag ghcr.io/openimis/openimis-pgsql:${{ github.event.inputs.tag }}
+ docker push ghcr.io/openimis/openimis-pgsql:${{ github.event.inputs.tag }}
0 commit comments