File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 37
37
- name : Rename build files
38
38
working-directory : build/libs
39
39
run : |
40
- mv ${{ steps.exec.outputs.paperclip }} PaperX-paperclip.jar
41
- mv ${{ steps.exec.outputs.bundler }} PaperX-bundler.jar
40
+ pushd build/libs
41
+ cp ${{ steps.exec.outputs.paperclip }} PaperX-paperclip.jar
42
+ cp ${{ steps.exec.outputs.bundler }} PaperX-bundler.jar
43
+ popd
42
44
43
45
- name : Create release if this is a tagged workflow
44
46
uses : ncipollo/release-action@v1
Original file line number Diff line number Diff line change @@ -27,4 +27,5 @@ services:
27
27
# these two gradle tasks must be run independently, otherwise it will fail
28
28
command : bash -c 'set -x
29
29
&& ./gradlew --no-daemon applyPatches --stacktrace
30
- && ./gradlew --no-daemon createReobfPaperclipJar --stacktrace'
30
+ && ./gradlew --no-daemon createReobfPaperclipJar --stacktrace
31
+ && chmod a+rw build/libs/*'
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
19
19
else
20
20
# create .gradle with correct user permissions
21
21
# docker daemon may otherwise create this directory with root ownership
22
- mkdir -p .gradle
22
+ mkdir -p .gradle build/libs
23
23
24
24
# if mounting the hosts cache folder, gradle inside the container will try and
25
25
# acquire a file lock that the host machine may already be holding. this will
You can’t perform that action at this time.
0 commit comments