Update aerobatic.yml

This commit is contained in:
yude 2020-09-05 23:59:32 +09:00
parent 67f9e8559d
commit b07bd656d4
No known key found for this signature in database
GPG Key ID: A49BFB97E0AB5435
2 changed files with 9 additions and 6 deletions

View File

@ -9,14 +9,14 @@ jobs:
name: Deploy name: Deploy
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repo
uses: actions/checkout@master
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
node-version: '12' node-version: '12'
- name: Install dependencies - name: Install dependencies
run: npm install aerobatic-cli --save run: npm install
- name: Checkout Repo
uses: actions/checkout@master
- name: Deploy to Aerobatic - name: Deploy to Aerobatic
run: npm run deploy run: npm run deploy
env: env:

View File

@ -1,5 +1,8 @@
{ {
"scripts": { "scripts": {
"deploy": "aero deploy" "deploy": "aero deploy"
} },
} "dependencies": {
"aerobatic-cli": "^2.1.4"
}
}