From b07bd656d43ef8739bfc3e5bd58628045eaea407 Mon Sep 17 00:00:00 2001 From: yudete Date: Sat, 5 Sep 2020 23:59:32 +0900 Subject: [PATCH] Update aerobatic.yml --- .github/workflows/aerobatic.yml | 6 +++--- package.json | 9 ++++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/aerobatic.yml b/.github/workflows/aerobatic.yml index 0eb60eb..5394688 100644 --- a/.github/workflows/aerobatic.yml +++ b/.github/workflows/aerobatic.yml @@ -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: diff --git a/package.json b/package.json index 5961efc..98507de 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "scripts": { - "deploy": "aero deploy" - } -} \ No newline at end of file + "deploy": "aero deploy" + }, + "dependencies": { + "aerobatic-cli": "^2.1.4" + } +}