2021-09-09 03:28:02 -07: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-08-12 04:17:17 -07:00
|
|
|
uses: actions/checkout@v3.5.3
|
2023-02-13 16:59:50 -08:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2023-08-12 20:25:30 -07:00
|
|
|
uses: docker/setup-buildx-action@v2.9.1
|
2023-02-13 16:59:50 -08:00
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-09-09 03:28:02 -07:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-01-16 22:27:01 -08:00
|
|
|
uses: docker/metadata-action@v4
|
2021-09-09 03:28:02 -07:00
|
|
|
with:
|
|
|
|
images: misskey/misskey
|
2022-12-06 11:32:03 -08: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 03:28:02 -07:00
|
|
|
- name: Log in to Docker Hub
|
2023-01-16 22:27:01 -08:00
|
|
|
uses: docker/login-action@v2
|
2021-09-09 03:28:02 -07:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and Push to Docker Hub
|
2023-02-13 16:59:50 -08:00
|
|
|
uses: docker/build-push-action@v4
|
2021-09-09 03:28:02 -07:00
|
|
|
with:
|
2023-02-13 16:59:50 -08:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2021-09-09 03:28:02 -07:00
|
|
|
context: .
|
|
|
|
push: true
|
2023-02-13 16:59:50 -08:00
|
|
|
platforms: ${{ steps.buildx.outputs.platforms }}
|
|
|
|
provenance: false
|
2021-09-09 03:28:02 -07:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-02-13 16:59:50 -08:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|