Skip to content

Commit

Permalink
Fix image and tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
kencx committed Jun 28, 2023
1 parent 13f0ca1 commit 42683ed
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ jobs:
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}-app
ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{version}}-app
type=semver,pattern=v{{major}}.{{minor}}-app
- name: Set Docker metadata for calibre
id: meta-calibre
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}-calibre
ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{version}}-calibre
type=semver,pattern=v{{major}}.{{minor}}-calibre
- name: Build and push app
uses: docker/build-push-action@v4
Expand All @@ -56,7 +56,7 @@ jobs:
target: app
tags: ${{ steps.meta-app.outputs.tags }}

- name: Build and push calibre
- name: Build and push app
uses: docker/build-push-action@v4
with:
context: .
Expand Down

0 comments on commit 42683ed

Please sign in to comment.