1
0
Fork 0

fixed github action

- fixed invalid artifact name
- fixed unmatched artifact path and name in `functions.yml`
This commit is contained in:
Kim, Jimin 2022-02-26 20:58:52 +09:00
parent 08258b9a32
commit b5903a1b74
2 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ jobs:
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: frontend/build
name: frontend_build
path: frontend/build
deploy:
@ -37,7 +37,7 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: frontend/build
name: frontend_build
path: frontend/build
- name: Deploy to Firebase

View file

@ -23,8 +23,8 @@ jobs:
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: functions/build
path: functions/build
name: functions_lib
path: functions/lib
deploy:
name: Deploy
@ -37,7 +37,7 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: functions/lib
name: functions_lib
path: functions/lib
- name: Deploy to Firebase