diff options
author | James Haggerty <james@gruemail.com> | 2022-11-02 08:28:03 +1100 |
---|---|---|
committer | James Haggerty <james@gruemail.com> | 2022-11-02 08:28:03 +1100 |
commit | f24ded98f0fad050dd7ee6b0251f8c9f31b00ddf (patch) | |
tree | 6b71ddfeb66bb1c3accdd27f6a6540a63cb18ba1 /.github/workflows | |
parent | ad6e919107fb0bb38d01b1ed6e7ca1b56f9719ed (diff) | |
download | Sensor-Watch-f24ded98f0fad050dd7ee6b0251f8c9f31b00ddf.tar.gz Sensor-Watch-f24ded98f0fad050dd7ee6b0251f8c9f31b00ddf.tar.bz2 Sensor-Watch-f24ded98f0fad050dd7ee6b0251f8c9f31b00ddf.zip |
Fix up build.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ed1ff26..b150afb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: run: emmake make working-directory: 'movement/make' - name: Archive simulator build - working-directory: 'movement/make/build' + working-directory: 'movement/make/build-sim' run: | cp watch.html index.html tar -czf simulator.tar.gz index.html watch.wasm watch.js @@ -52,4 +52,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: simulator.tar.gz - path: movement/make/build/simulator.tar.gz + path: movement/make/build-sim/simulator.tar.gz |