Skip to content

feat(ml):背景を白色に変更 #41

feat(ml):背景を白色に変更

feat(ml):背景を白色に変更 #41

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
environment:
name: production
url: https://google.com
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Google Artifact Registry
uses: docker/login-action@v1
with:
registry: asia-northeast1-docker.pkg.dev
username: _json_key
password: ${{ secrets.GCP_SA_KEY }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./server/src
push: true
tags: ${{ secrets.TF_VAR_CONTAINER_IMAGE }}:latest