2021-09-30 16:09:12 +02: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 07:59:01 +01:00
|
|
|
if: github.repository == 'misskey-dev/misskey'
|
2021-09-30 16:09:12 +02:00
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2023-01-15 08:03:18 +01:00
|
|
|
uses: actions/checkout@v3.3.0
|
2021-09-30 16:09:12 +02:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-01-17 07:27:01 +01:00
|
|
|
uses: docker/metadata-action@v4
|
2021-09-30 16:09:12 +02:00
|
|
|
with:
|
|
|
|
images: misskey/misskey
|
|
|
|
- name: Log in to Docker Hub
|
2023-01-17 07:27:01 +01:00
|
|
|
uses: docker/login-action@v2
|
2021-09-30 16:09:12 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and Push to Docker Hub
|
2023-01-17 07:27:01 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2021-09-30 16:09:12 +02:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2021-10-16 12:49:37 +02:00
|
|
|
tags: misskey/misskey:develop
|
2021-09-30 16:09:12 +02:00
|
|
|
labels: develop
|
2023-01-27 03:30:22 +01:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|