Skip to content

Commit

Permalink
Updated workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcells committed Nov 23, 2020
1 parent 8ef7890 commit d39baab
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,21 @@ jobs:
needs: build

steps:
- name: Install pkg dependency
run: npm install -g pkg
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x

- name: Install global dependencies
run: |
npm install -g grunt-cli
npm install -g pkg
- name: Install local dependencies
run: npm install

- name: Build Release Package
run: npm run-script pkg
Expand Down

0 comments on commit d39baab

Please sign in to comment.