Skip to content
Snippets Groups Projects
Unverified Commit bb83ee84 authored by zyoshoka's avatar zyoshoka Committed by GitHub
Browse files

fix(ci): publish docker image fails (3) (#13327)

* fix(ci): publish docker image fails (3)

* fix: set `tags`
parent b7a12fbc
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,6 @@ jobs: ...@@ -43,7 +43,6 @@ jobs:
push: true push: true
platforms: ${{ matrix.platform }} platforms: ${{ matrix.platform }}
provenance: false provenance: false
tags: ${{ env.REGISTRY_IMAGE }}:develop
labels: develop labels: develop
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
......
...@@ -7,6 +7,13 @@ on: ...@@ -7,6 +7,13 @@ on:
env: env:
REGISTRY_IMAGE: misskey/misskey REGISTRY_IMAGE: misskey/misskey
TAGS: |
type=edge
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
jobs: jobs:
# see https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners # see https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
...@@ -33,13 +40,7 @@ jobs: ...@@ -33,13 +40,7 @@ jobs:
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY_IMAGE }} images: ${{ env.REGISTRY_IMAGE }}
tags: | tags: ${{ env.TAGS }}
type=edge
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Log in to Docker Hub - name: Log in to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
...@@ -53,7 +54,6 @@ jobs: ...@@ -53,7 +54,6 @@ jobs:
push: true push: true
platforms: ${{ matrix.platform }} platforms: ${{ matrix.platform }}
provenance: false provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
...@@ -89,6 +89,7 @@ jobs: ...@@ -89,6 +89,7 @@ jobs:
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY_IMAGE }} images: ${{ env.REGISTRY_IMAGE }}
tags: ${{ env.TAGS }}
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment