From 4d2ae448bcccf6e3b8ef16c4303ff4a2a8904f62 Mon Sep 17 00:00:00 2001 From: Alex Gustafsson Date: Wed, 30 Jul 2025 15:01:03 +0200 Subject: [PATCH] Change version / tag format to follow conventions In order to allow for automated tooling to identify new releases of the container image, follow best practices by adhering to the semver specification (at least in terms of syntax). Solves: #487 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b432b55..cd5d56e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: - name: Get current date id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + run: echo "::set-output name=date::$(date +'%Y.%m.%d')" - name: Checkout uses: actions/checkout@v4