Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Merge pull request #248 from traPtitech/feat/remove_openapi_and_meeti… #50

Merge pull request #248 from traPtitech/feat/remove_openapi_and_meeti…

Merge pull request #248 from traPtitech/feat/remove_openapi_and_meeti… #50

Workflow file for this run

name: staging
on:
push:
branches:
- main
env:
IMAGE_NAME: emoine_r-ui
IMAGE_TAG: main
jobs:
image:
name: Build Docker Image (main)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: traptitech
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
ghcr.io/traptitech/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}