Update firebase.yml

This commit is contained in:
yude 2020-09-05 08:58:25 +09:00
parent 4670956bd2
commit 65f2b5f94e
No known key found for this signature in database
GPG Key ID: A49BFB97E0AB5435
1 changed files with 1 additions and 11 deletions

View File

@ -13,11 +13,6 @@ jobs:
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: dist
path: ./
deploy:
name: Deploy
needs: build
@ -25,14 +20,9 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: dist
path: ./
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only hosting:yudemoe
args: deploy --only hosting:yudemoe --project yudemoe
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}