CI: publish container with tag latest along with the version
Some checks failed
/ test (push) Failing after 20s

This commit is contained in:
phil 2024-12-06 20:02:48 +01:00
parent 719ba3b1ea
commit 60db797051
3 changed files with 10 additions and 3 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[project]
name = "sms_handler"
version = "0.0.11"
version = "0.0.12"
#dynamic = ["version"]
description = "Listen to messages from the SMS Forwarder app on Android and send mail"
readme = "README.md"

2
uv.lock generated
View file

@ -255,7 +255,7 @@ wheels = [
[[package]]
name = "sms-handler"
version = "0.0.8"
version = "0.0.12"
source = { editable = "." }
dependencies = [
{ name = "aiosmtplib" },