2021-09-30 14:09:12 +00: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-15 06:59:01 +00:00
|
|
|
if: github.repository == 'misskey-dev/misskey'
|
2021-09-30 14:09:12 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2023-09-05 08:15:53 +00:00
|
|
|
uses: actions/checkout@v4.0.0
|
2023-02-05 05:03:26 +00:00
|
|
|
- name: Set up Docker Buildx
|
2023-02-14 00:59:50 +00:00
|
|
|
id: buildx
|
2023-08-29 12:17:02 +00:00
|
|
|
uses: docker/setup-buildx-action@v2.10.0
|
2023-02-14 00:59:50 +00:00
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-09-30 14:09:12 +00:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-01-17 06:27:01 +00:00
|
|
|
uses: docker/metadata-action@v4
|
2021-09-30 14:09:12 +00:00
|
|
|
with:
|
|
|
|
images: misskey/misskey
|
|
|
|
- name: Log in to Docker Hub
|
2023-09-13 07:08:10 +00:00
|
|
|
uses: docker/login-action@v3
|
2021-09-30 14:09:12 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and Push to Docker Hub
|
2023-09-13 07:08:00 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2021-09-30 14:09:12 +00:00
|
|
|
with:
|
2023-02-14 00:59:50 +00:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2021-09-30 14:09:12 +00:00
|
|
|
context: .
|
|
|
|
push: true
|
2023-02-14 00:59:50 +00:00
|
|
|
platforms: ${{ steps.buildx.outputs.platforms }}
|
|
|
|
provenance: false
|
2021-10-16 10:49:37 +00:00
|
|
|
tags: misskey/misskey:develop
|
2021-09-30 14:09:12 +00:00
|
|
|
labels: develop
|
2023-01-27 02:30:22 +00:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|