2021-09-09 19:28:02 +09:00
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2023-10-19 19:35:13 +09:00
|
|
|
uses: actions/checkout@v4.1.1
|
2023-02-14 09:59:50 +09:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2023-09-13 16:08:22 +09:00
|
|
|
uses: docker/setup-buildx-action@v3.0.0
|
2023-02-14 09:59:50 +09:00
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-09-09 19:28:02 +09:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-09-13 16:08:30 +09:00
|
|
|
uses: docker/metadata-action@v5
|
2021-09-09 19:28:02 +09:00
|
|
|
with:
|
|
|
|
images: misskey/misskey
|
2022-12-07 04:32:03 +09:00
|
|
|
tags: |
|
|
|
|
type=edge
|
|
|
|
type=ref,event=pr
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
2021-09-09 19:28:02 +09:00
|
|
|
- name: Log in to Docker Hub
|
2023-09-13 16:08:10 +09:00
|
|
|
uses: docker/login-action@v3
|
2021-09-09 19:28:02 +09:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and Push to Docker Hub
|
2023-09-13 16:08:00 +09:00
|
|
|
uses: docker/build-push-action@v5
|
2021-09-09 19:28:02 +09:00
|
|
|
with:
|
2023-02-14 09:59:50 +09:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2021-09-09 19:28:02 +09:00
|
|
|
context: .
|
|
|
|
push: true
|
2023-02-14 09:59:50 +09:00
|
|
|
platforms: ${{ steps.buildx.outputs.platforms }}
|
|
|
|
provenance: false
|
2021-09-09 19:28:02 +09:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-02-14 09:59:50 +09:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|