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
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install dependencies
run: npm install aerobatic-cli --save
- name: Checkout Repo
uses: actions/checkout@master
run: npm install
- name: Deploy to Aerobatic
run: npm run deploy
env:

View File

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