Skip to content

Commit

Permalink
fix path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdvgt committed Dec 9, 2023
1 parent 7dab421 commit 06ef386
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/update-compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,17 @@ jobs:

- name: Update submodule
run: |
cd effekt/
git checkout master
git pull
git -C effekt/ checkout master
git -C effekt/ pull
if [ -n "$effekt_commit" ]; then
git checkout ${{ github.event.inputs.effekt_commit }}
git -C effekt/ checkout ${{ github.event.inputs.effekt_commit }}
fi
- name: Build Effekt JS
run: |
cd effekt/
sbt assembleJS
- name: Copy js file to website
run: |
cp -f out/effekt.js ../src/effekt.js
cd ..
- name: Run webpack
run: |
Expand Down

0 comments on commit 06ef386

Please sign in to comment.