Skip to content

Commit 1e9cd02

Browse files
authored
Merge pull request #1453 from Anselmoo/feature/docker-fix-pep440
build: 💚 Update Docker actions
2 parents eec32dd + a62910f commit 1e9cd02

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/docker-cd.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ jobs:
5858
with:
5959
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6060
tags: |
61-
type=sha,format=long
62-
type=ref,event=branch,branch=main,tag=latest
61+
type=pep440,pattern={{version}},prefix=v
6362
6463
- name: Build and Push container images
6564
uses: docker/[email protected]

poetry.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "SpectraFit"
3-
version = "1.0.3.post0"
3+
version = "1.0.3.post1"
44
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
55
readme = "README.md"
66
authors = ["Anselm Hahn <[email protected]>"]

spectrafit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
SpectraFit uses [Semantic Versioning](https://semver.org/).
66
"""
77

8-
__version__ = "1.0.3.post0"
8+
__version__ = "1.0.3.post1"

0 commit comments

Comments
 (0)