Skip to content

chore : jenkins 보안 경고를 반영해서 withEnv로 환경변수 처리하도록 변경 #24

chore : jenkins 보안 경고를 반영해서 withEnv로 환경변수 처리하도록 변경

chore : jenkins 보안 경고를 반영해서 withEnv로 환경변수 처리하도록 변경 #24

Workflow file for this run

name: Build and Prepare for Deployment
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20.17.0"
- name: Install dependencies
run: npm install
- name: Build React app
env:
REACT_APP_KAKAO_MAP_KEY: ${{ secrets.REACT_APP_KAKAO_MAP_KEY }}
run: CI=false npm run build
# 나중에 aws