Skip to content

Commit 74f8e79

Browse files
committed
Fix release path
1 parent 76034cf commit 74f8e79

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ jobs:
5858
- name: Add Rust target
5959
run: rustup target add x86_64-unknown-linux-gnu
6060

61+
- name: Cache Rust build
62+
uses: Swatinem/rust-cache@v2
63+
6164
# Build MathJax Server
6265
- name: Build MathJax Server
6366
working-directory: ./mathjax-server
@@ -68,7 +71,7 @@ jobs:
6871
run: |
6972
mkdir -p release
7073
cp mathjax/target/*.jar release/
71-
cp mathjax-server/target/x86_64-unknown-linux-gnu/release/mathjax-server.exe release/
74+
cp mathjax-server/target/release/mathjax-server.exe release/
7275
zip -j "release/confluence-mathjax-plugin-${GITHUB_REF_NAME}.zip" release/*
7376
7477
# Upload artifacts

0 commit comments

Comments
 (0)