2021-09-30 07:09:12 -07:00
|
|
|
name: Publish Docker image (develop)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-14 22:59:01 -08:00
|
|
|
if: github.repository == 'misskey-dev/misskey'
|
2021-09-30 07:09:12 -07:00
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2023-09-05 01:15:53 -07:00
|
|
|
uses: actions/checkout@v4.0.0
|
2023-02-04 21:03:26 -08:00
|
|
|
- name: Set up Docker Buildx
|
2023-02-13 16:59:50 -08:00
|
|
|
id: buildx
|
2023-09-13 00:08:22 -07:00
|
|
|
uses: docker/setup-buildx-action@v3.0.0
|
2023-02-13 16:59:50 -08:00
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-09-30 07:09:12 -07:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-09-13 00:08:30 -07:00
|
|
|
uses: docker/metadata-action@v5
|
2021-09-30 07:09:12 -07:00
|
|
|
with:
|
|
|
|
images: misskey/misskey
|
|
|
|
- name: Log in to Docker Hub
|
2023-09-13 00:08:10 -07:00
|
|
|
uses: docker/login-action@v3
|
2021-09-30 07:09:12 -07:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and Push to Docker Hub
|
2023-09-13 00:08:00 -07:00
|
|
|
uses: docker/build-push-action@v5
|
2021-09-30 07:09:12 -07:00
|
|
|
with:
|
2023-02-13 16:59:50 -08:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2021-09-30 07:09:12 -07:00
|
|
|
context: .
|
|
|
|
push: true
|
2023-02-13 16:59:50 -08:00
|
|
|
platforms: ${{ steps.buildx.outputs.platforms }}
|
|
|
|
provenance: false
|
2021-10-16 03:49:37 -07:00
|
|
|
tags: misskey/misskey:develop
|
2021-09-30 07:09:12 -07:00
|
|
|
labels: develop
|
2023-01-26 18:30:22 -08:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|