From 35c057bc076e5f24cea1a5363661403599b42077 Mon Sep 17 00:00:00 2001 From: yudete Date: Sat, 5 Sep 2020 08:38:37 +0900 Subject: [PATCH] Setup Firebase --- .firebaserc | 2 +- .github/workflow/firebase.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.firebaserc b/.firebaserc index d780972..f6d814c 100644 --- a/.firebaserc +++ b/.firebaserc @@ -1,5 +1,5 @@ { "projects": { - "default": "yudemoe" + "default": "yude-moe" } } diff --git a/.github/workflow/firebase.yml b/.github/workflow/firebase.yml index 1bf8840..c274948 100644 --- a/.github/workflow/firebase.yml +++ b/.github/workflow/firebase.yml @@ -3,19 +3,19 @@ name: Deploy to Firebase Hosting on: [push] jobs: -FrontDeploy: - name: FrontDeploy +Firebase: + name: Firebase runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@master - - name: setup Node + - name: Setup Node uses: actions/setup-node@v1 with: node-version: 10.x registry-url: 'https://registry.npmjs.org' - name: Install Dependencies run: npm install - - name: deploy to Firebase Hosting + - name: Deploy to Firebase Hosting run: | npm run deploy --token=${{ secrets.FIREBASE_TOKEN }} \ No newline at end of file