misskey/.github/workflows/docker.yml
laoXong b6dff11a52
Some checks failed
Check SPDX-License-Identifier / check-spdx-license-id (push) Failing after 19s
Check copyright year / check_copyright_year (push) Successful in 16s
Publish Docker image (develop) / Build (linux/amd64) (push) Failing after 5m20s
Publish Docker image (develop) / merge (push) Has been skipped
Dockle / dockle (push) Successful in 1m7s
Lint / pnpm_install (push) Successful in 4m8s
Lint / locale_verify (push) Successful in 3m59s
Storybook / build (push) Has been skipped
Test (frontend) / vitest (20.16.0) (push) Failing after 4m43s
Test (frontend) / e2e (chrome, 20.16.0) (push) Failing after 5m16s
Test (production install and build) / production (20.16.0) (push) Successful in 3m36s
Lint / lint (backend) (push) Successful in 5m44s
Lint / lint (frontend) (push) Failing after 16m42s
Lint / lint (frontend-embed) (push) Successful in 5m53s
Lint / lint (frontend-shared) (push) Successful in 4m14s
Lint / lint (misskey-bubble-game) (push) Successful in 4m59s
Lint / lint (misskey-js) (push) Successful in 4m38s
Lint / lint (misskey-reversi) (push) Successful in 4m22s
Lint / lint (sw) (push) Successful in 4m21s
Lint / typecheck (backend) (push) Successful in 3m49s
Lint / typecheck (misskey-js) (push) Successful in 2m42s
Lint / typecheck (sw) (push) Successful in 2m58s
Fix: Gitea Action
2024-10-21 01:38:10 +08:00

106 lines
3.2 KiB
YAML

name: Publish Docker image
on:
release:
types: [published]
workflow_dispatch:
env:
REGISTRY_IMAGE: laoxong/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:
# see https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
# - linux/arm64
steps:
- name: Prepare
run: |
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Check out the repo
uses: actions/checkout@v4.1.1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: ${{ env.TAGS }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push to Docker Hub
id: build
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: ${{ matrix.platform }}
provenance: false
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: christopherhx/gitea-upload-artifact@v4
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
merge:
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Download digests
uses: christopherhx/gitea-download-artifact@v4
with:
path: /tmp/digests
pattern: digests-*
merge-multiple: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: ${{ env.TAGS }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}