Skip to content

add misskey-js, reversi, bubble-game in yodangang dockerfile #69

add misskey-js, reversi, bubble-game in yodangang dockerfile

add misskey-js, reversi, bubble-game in yodangang dockerfile #69

name: Build and Push Docker Image
on:
push:
branches:
- develop
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/setup-buildx-action@v2
- name: Docker build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./YodangangExpress.Dockerfile
push: true
tags: docker.io/juunini/misskey:${{ github.sha }}, docker.io/juunini/misskey:latest
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/arm64/v8