Skip to content

Commit 9d62ed0

Browse files
committed
Fix release names
1 parent 9f2fcd5 commit 9d62ed0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ jobs:
3737
- name: Rename build files
3838
working-directory: build/libs
3939
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
4244
4345
- name: Create release if this is a tagged workflow
4446
uses: ncipollo/release-action@v1

docker-compose.ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ services:
2727
# these two gradle tasks must be run independently, otherwise it will fail
2828
command: bash -c 'set -x
2929
&& ./gradlew --no-daemon applyPatches --stacktrace
30-
&& ./gradlew --no-daemon createReobfPaperclipJar --stacktrace'
30+
&& ./gradlew --no-daemon createReobfPaperclipJar --stacktrace
31+
&& chmod a+rw build/libs/*'

scripts/cibuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
1919
else
2020
# create .gradle with correct user permissions
2121
# docker daemon may otherwise create this directory with root ownership
22-
mkdir -p .gradle
22+
mkdir -p .gradle build/libs
2323

2424
# if mounting the hosts cache folder, gradle inside the container will try and
2525
# acquire a file lock that the host machine may already be holding. this will

0 commit comments

Comments
 (0)