Setup Aerobatic

This commit is contained in:
2020-09-05 09:14:43 +09:00
parent da91d19ea3
commit 3c5cb04cbf
3 changed files with 28 additions and 0 deletions

20
.github/workflows/aerobatic.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Aerobatic
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: npm install aerobatic-cli
- name: Checkout Repo
uses: actions/checkout@master
- name: Deploy to Firebase
run: aero deploy
env:
FIREBASE_TOKEN: ${{ secrets.AEROBATIC_API_KEY }}