fixed indention

This commit is contained in:
Kim, Jimin 2021-05-17 23:29:49 +09:00
parent fc4b13f265
commit 4c8a267272

View file

@ -17,33 +17,33 @@ jobs:
with: with:
name: build name: build
path: build path: build
deploy: deploy:
name: Deploy name: Deploy
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@master uses: actions/checkout@master
- name: Download Artifact - name: Download Artifact
uses: actions/download-artifact@master uses: actions/download-artifact@master
with: with:
name: build name: build
path: build path: build
- name: Set target - name: Set target
uses: w9jds/firebase-action@master uses: w9jds/firebase-action@master
with: with:
args: use developomp-site args: use developomp-site
env: env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
- name: Apply target - name: Apply target
uses: w9jds/firebase-action@master uses: w9jds/firebase-action@master
with: with:
args: target:apply hosting dev developomp-site args: target:apply hosting dev developomp-site
env: env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
- name: Deploy to Firebase - name: Deploy to Firebase
uses: w9jds/firebase-action@master uses: w9jds/firebase-action@master
with: with:
args: deploy --only hosting:dev args: deploy --only hosting:dev
env: env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}