Skip to content

[ADD] 상세 설명 디자인 추가 (#3) #5

[ADD] 상세 설명 디자인 추가 (#3)

[ADD] 상세 설명 디자인 추가 (#3) #5

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Build
run: CI=false yarn build
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: kojesung
password: ${{ secrets.REPO_SECRET }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/Frontend_React
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}