We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 288fede commit 9ea4ffbCopy full SHA for 9ea4ffb
1 file changed
.github/workflows/release_test.yml
@@ -62,12 +62,9 @@ jobs:
62
# JRE拷贝到前端静态目录
63
- name: Copy JRE to static directory
64
run: |
65
- mkdir -p chat2db-client/static/jre
66
- cp -r "$JAVA_HOME" chat2db-client/static/jre
67
- if [ "${{ runner.os }}" = "Windows" ]; then
68
- cp -r ${{ env.JAVA_HOME }} chat2db-client/static/jre
69
- else
70
- cp -r $JAVA_HOME chat2db-client/static/jre
+ mkdir -p chat2db-client/static
+ cp -r "$JAVA_HOME"/jre chat2db-client/static/jre
+ if [ "${{ runner.os }}" != "Windows" ]; then
71
chmod -R 777 chat2db-client/static/jre
72
fi
73
shell: bash
0 commit comments