fixed github action
- fixed invalid artifact name - fixed unmatched artifact path and name in `functions.yml`
This commit is contained in:
parent
08258b9a32
commit
b5903a1b74
2 changed files with 5 additions and 5 deletions
4
.github/workflows/frontend.yml
vendored
4
.github/workflows/frontend.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/functions.yml
vendored
6
.github/workflows/functions.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue