Skip to content

Commit

Permalink
Fix downloaded build artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Dec 23, 2020
1 parent 54b8af0 commit f937276
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,20 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Display Node.js and npm informations
run: |
echo "node version $(node -v) running"
echo "npm version $(npm -v) running"
- uses: actions/download-artifact@v2
with:
name: application-build
path: dist/

- name: Install production dependencies
run: npm ci
Expand Down

0 comments on commit f937276

Please sign in to comment.