Skip to content

Commit

Permalink
Fix webui bundle.js path
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jun 14, 2020
1 parent 7292594 commit 062206e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
- name: Copy files
working-directory: webui
run: |
mkdir ${{runner.temp}}/artifacts
install ../LICENSE index.html site.css dist/bundle.js ${{runner.temp}}/artifacts
mkdir -p ${{runner.temp}}/artifacts/dist
install ../LICENSE index.html site.css ${{runner.temp}}/artifacts
install dist/bundle.js ${{runner.temp}}/artifacts/dist/bundle.js
- uses: actions/upload-artifact@v2
with:
name: webui-${{matrix.build-type}}
Expand Down

0 comments on commit 062206e

Please sign in to comment.