add docker build
All checks were successful
Lint / pnpm_install (push) Successful in 2m11s
Publish Docker image / Build (push) Successful in 4m23s
Test (backend) / unit (20.16.0) (push) Successful in 6m24s
Test (production install and build) / production (20.16.0) (push) Successful in 1m6s
Lint / lint (backend) (push) Successful in 2m2s
Test (backend) / e2e (20.16.0) (push) Successful in 10m10s
Lint / lint (frontend) (push) Successful in 2m57s
Lint / lint (frontend-embed) (push) Successful in 2m15s
Lint / lint (frontend-shared) (push) Successful in 2m16s
Lint / lint (misskey-bubble-game) (push) Successful in 2m2s
Lint / lint (misskey-js) (push) Successful in 2m4s
Lint / lint (misskey-reversi) (push) Successful in 1m59s
Lint / lint (sw) (push) Successful in 2m13s
Lint / typecheck (backend) (push) Successful in 1m59s
Lint / typecheck (misskey-js) (push) Successful in 1m30s
Lint / typecheck (sw) (push) Successful in 1m25s
All checks were successful
Lint / pnpm_install (push) Successful in 2m11s
Publish Docker image / Build (push) Successful in 4m23s
Test (backend) / unit (20.16.0) (push) Successful in 6m24s
Test (production install and build) / production (20.16.0) (push) Successful in 1m6s
Lint / lint (backend) (push) Successful in 2m2s
Test (backend) / e2e (20.16.0) (push) Successful in 10m10s
Lint / lint (frontend) (push) Successful in 2m57s
Lint / lint (frontend-embed) (push) Successful in 2m15s
Lint / lint (frontend-shared) (push) Successful in 2m16s
Lint / lint (misskey-bubble-game) (push) Successful in 2m2s
Lint / lint (misskey-js) (push) Successful in 2m4s
Lint / lint (misskey-reversi) (push) Successful in 1m59s
Lint / lint (sw) (push) Successful in 2m13s
Lint / typecheck (backend) (push) Successful in 1m59s
Lint / typecheck (misskey-js) (push) Successful in 1m30s
Lint / typecheck (sw) (push) Successful in 1m25s
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
parent
3d2f7976ba
commit
c154154645
1 changed files with 60 additions and 0 deletions
60
.forgejo/workflows/docker.yml
Normal file
60
.forgejo/workflows/docker.yml
Normal file
|
@ -0,0 +1,60 @@
|
|||
name: Publish Docker image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
REGISTRY_IMAGE: l1drm/yumechi-no-kuni
|
||||
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
|
||||
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
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
platforms: ${{ matrix.platform }}
|
||||
provenance: true
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
Loading…
Reference in a new issue