moved everything out of the source directory

This commit is contained in:
Kim, Jimin 2022-02-19 17:50:34 +09:00
parent 8f13b81918
commit 294387d8d5
151 changed files with 21 additions and 60 deletions

View file

@ -17,14 +17,14 @@ jobs:
with:
node-version: 16
cache: yarn
cache-dependency-path: source/yarn.lock
cache-dependency-path: yarn.lock
- name: Install dependencies and Build
run: cd source && yarn install && yarn build
run: yarn install && yarn build
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: build
path: source/build
path: build
deploy:
if: ${{ github.repository_owner == 'developomp' }}
@ -38,7 +38,7 @@ jobs:
uses: actions/download-artifact@master
with:
name: build
path: source/build
path: build
- name: Set target
uses: w9jds/firebase-action@master
with: