Skip to content

Commit

Permalink
Add workaround to other action
Browse files Browse the repository at this point in the history
  • Loading branch information
rphillips-nz committed Feb 17, 2021
1 parent cb683f5 commit f92b6b9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build dependencies workaround
run: npm run build:addon
working-directory: ./node_modules/@nodegui/nodegui
- name: Build and package
run: |
npm install
npm run build
npm run package
- name: Create archive
Expand All @@ -40,7 +44,7 @@ jobs:
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f92b6b9

Please sign in to comment.