Skip to content

Commit

Permalink
Add new versioning scheme for releases
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bock <[email protected]>
  • Loading branch information
nicolasbock committed Jun 13, 2024
1 parent c5a1682 commit f7cf82d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
- cron: '31 13 * * *'
push:
branches: [ "main" ]
tags: [ 'v*.*.*' ]
tags:
- 'v*.*.*' # v0.1.2
- 'v2*-*' # v20240613-1
pull_request:
branches: [ "main" ]
workflow_dispatch:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ghcr-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
- cron: '38 11 * * *'
push:
branches: [ "main" ]
tags: [ 'v*.*.*' ]
tags:
- 'v*.*.*' # v0.1.2
- 'v2*-*' # v20240613-1
pull_request:
branches: [ "main" ]
workflow_dispatch:
Expand Down

0 comments on commit f7cf82d

Please sign in to comment.