Commit Graph

6 Commits

Author SHA1 Message Date
kalsi-avneet
adce04e947 Docker publish workflow: Add stable, major, and minor tags
For every release, add the following tags:
    1. "stable" - The latest stable release can be obtained using this tag
    2. major and minor

  The "latest" tag remains as-is. It will always point to the latest image (stable or otherwise)
2025-12-21 21:23:09 +05:30
Peter Bieringer
4080d2cadd only publish final releases to docker container 2025-10-01 07:41:41 +02:00
kalsi-avneet
eb69ad48c7 Docker publish workflow: Install optional pip dependencies
* Dependencies taken from `pyproject.toml`
	* As of now, following are added:
	    * bcrypt
	    * argon2
	    * ldap
2025-06-05 20:07:07 +05:30
kalsi-avneet
7edc6ff258 Docker publish workflow: Add architecture linux/arm64 2025-05-25 22:16:21 +05:30
kalsi-avneet
f5d99a89d4 Docker publish workflow: Add scheduled and workflow_dispatch triggers
* In addition to the existing triggers, add:
    * scheduled trigger
    	* At - 00:00 UTC daily.
    	* Docker image tag - `nightly-YYYYMMDD`.
    * workflow dispatch trigger
    	* For triggering workflow manually.
    	* Docker image tag: `workflow_dispatch-<git branch>-<latest commit sha>`.
* `latest` tag will also be added for both the above cases.
2025-05-11 19:49:51 +05:30
kalsi-avneet
9805c62c19 Docker publish workflow: Create docker-publish.yml
* Build using the `Dockerfile` and publish to `ghcr.io`
* Trigger on release
* Create the following tags based on the release git tag.

    For example, for a git tag `v1.2.3`, the following docker tags will be created:
    * `1.2.3` (version)
    * `latest`

    Note: Depends on the git tag following semantic versioning.
2025-05-04 21:43:29 +05:30