CI: publish container with tag latest along with the version
Some checks failed
/ test (push) Failing after 20s
Some checks failed
/ test (push) Failing after 20s
This commit is contained in:
parent
719ba3b1ea
commit
60db797051
3 changed files with 10 additions and 3 deletions
|
@ -62,9 +62,16 @@ jobs:
|
|||
containerfiles: |
|
||||
./Containerfile
|
||||
|
||||
- name: Push the image to the registry
|
||||
- name: Push the image to the registry (version tagged)
|
||||
uses: actions/push-to-registry@v2
|
||||
with:
|
||||
registry: "docker://${{ vars.REGISTRY }}/${{ vars.ORGANISATION }}"
|
||||
image: sms-handler
|
||||
tags: ${{ steps.version.outputs.version }}
|
||||
|
||||
- name: Push the image to the registry (latest tag)
|
||||
uses: actions/push-to-registry@v2
|
||||
with:
|
||||
registry: "docker://${{ vars.REGISTRY }}/${{ vars.ORGANISATION }}"
|
||||
image: sms-handler
|
||||
tags: latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue