Skip to content

Merge pull request #27 from abyss-s/main #8

Merge pull request #27 from abyss-s/main

Merge pull request #27 from abyss-s/main #8

Workflow file for this run

name: Automatically Deployment
on: [push]
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Setting .env
run: |
echo "REACT_APP_KEY=$REACT_APP_PUBLIC_KEY" >> .env
echo "SECRET_KEY=$SECRET_KEY" >> .env
echo "REACT_APP_KAKAO_REST_API_KEY=$REACT_APP_KAKAO_REST_API_KEY" >> .env
echo "REACT_APP_KAKAO_JAVASCRIPT_KEY=$REACT_APP_KAKAO_JAVASCRIPT_KEY" >> .env
env:
REACT_APP_PUBLIC_KEY: ${{ secrets.REACT_APP_PUBLIC_KEY }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
REACT_APP_KAKAO_REST_API_KEY: ${{ secrets.REACT_APP_KAKAO_REST_API_KEY }}
REACT_APP_KAKAO_JAVASCRIPT_KEY: ${{ secrets.REACT_APP_KAKAO_JAVASCRIPT_KEY }

Check failure on line 27 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Automatically Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 27, Col: 43): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.