Skip to content

Commit

Permalink
Fix Docker Prerelease Tag Syntax (#3475)
Browse files Browse the repository at this point in the history
* Fix #3206: Change prerelease label syntax.

* Restore non-Python-version specific tag
  • Loading branch information
bryanculver authored Mar 27, 2023
1 parent 7d74505 commit 226546b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ jobs:
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}-py${{ matrix.python-version }}
type=semver,pattern={{version}}+py${{ matrix.python-version }}
type=semver,pattern={{version}},enable=${{ matrix.python-version == 3.7 }}
type=raw,value={{version}}-py${{ matrix.python-version }}r
labels: |
org.opencontainers.image.title=Nautobot
- name: "Build"
Expand All @@ -112,8 +113,9 @@ jobs:
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}-py${{ matrix.python-version }}
type=semver,pattern={{version}}+py${{ matrix.python-version }}
type=semver,pattern={{version}},enable=${{ matrix.python-version == 3.7 }}
type=raw,value={{version}}-py${{ matrix.python-version }}r
labels: |
org.opencontainers.image.title=Nautobot
- name: "Build Dev Containers"
Expand Down
1 change: 1 addition & 0 deletions changes/3206.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed Docker tag syntax on prerelease workflow.

0 comments on commit 226546b

Please sign in to comment.