We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76034cf commit 74f8e79Copy full SHA for 74f8e79
.github/workflows/build.yml
@@ -58,6 +58,9 @@ jobs:
58
- name: Add Rust target
59
run: rustup target add x86_64-unknown-linux-gnu
60
61
+ - name: Cache Rust build
62
+ uses: Swatinem/rust-cache@v2
63
+
64
# Build MathJax Server
65
- name: Build MathJax Server
66
working-directory: ./mathjax-server
@@ -68,7 +71,7 @@ jobs:
68
71
run: |
69
72
mkdir -p release
70
73
cp mathjax/target/*.jar release/
- cp mathjax-server/target/x86_64-unknown-linux-gnu/release/mathjax-server.exe release/
74
+ cp mathjax-server/target/release/mathjax-server.exe release/
75
zip -j "release/confluence-mathjax-plugin-${GITHUB_REF_NAME}.zip" release/*
76
77
# Upload artifacts
0 commit comments