Add ghcr push (experimental)

This commit is contained in:
Laica Lunasys 2023-04-09 17:53:34 +09:00
parent 23db82d400
commit 3639390789
1 changed files with 33 additions and 0 deletions

33
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Build
on:
push:
# タグ付きpushの時にする
tags:
# TODO: 後で消す
branches:
- migrate/github-actions
# 手動ビルドもできるように(いる?)
workflow_dispatch:
jobs:
build:
name: build-images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: "Login to GitHub Container Registry"
uses: docker/login-aciton@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and Push"
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/misskeyio/misskey:latest
ghcr.io/misskeyio/misskey:${{ github.ref_name }}