Skip to content

Commit

Permalink
Merge pull request #159 from nicolasbock/tags
Browse files Browse the repository at this point in the history
Add new versioning scheme for releases
  • Loading branch information
nicolasbock authored Jun 13, 2024
2 parents c5a1682 + f7cf82d commit 3bb5115
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 3bb5115

Please sign in to comment.