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