We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d301e15 commit 9f2fcd5Copy full SHA for 9f2fcd5
.github/workflows/continuous_integration.yml
@@ -34,10 +34,16 @@ jobs:
34
sudo rm -f ~/.gradle/caches/modules-2/modules-2.lock
35
sudo rm -f ~/.gradle/caches/modules-2/gc.properties
36
37
+ - name: Rename build files
38
+ working-directory: build/libs
39
+ run: |
40
+ mv ${{ steps.exec.outputs.paperclip }} PaperX-paperclip.jar
41
+ mv ${{ steps.exec.outputs.bundler }} PaperX-bundler.jar
42
+
43
- name: Create release if this is a tagged workflow
44
uses: ncipollo/release-action@v1
45
if: startsWith(github.ref, 'refs/tags/')
46
with:
- artifacts: build/libs/${{ steps.exec.outputs.paperclip }}
47
+ artifacts: build/libs/PaperX-paperclip.jar
48
name: PaperX ${{ steps.exec.outputs.version }}
49
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments