We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51db808 commit 288fedeCopy full SHA for 288fede
1 file changed
.github/workflows/release_test.yml
@@ -64,7 +64,10 @@ jobs:
64
run: |
65
mkdir -p chat2db-client/static/jre
66
cp -r "$JAVA_HOME" chat2db-client/static/jre
67
- if [ "${{ runner.os }}" != "Windows" ]; then
+ 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
71
chmod -R 777 chat2db-client/static/jre
72
fi
73
shell: bash
0 commit comments