Skip to content

Commit 9f2fcd5

Browse files
committed
Nicer release artifact names
1 parent d301e15 commit 9f2fcd5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,16 @@ jobs:
3434
sudo rm -f ~/.gradle/caches/modules-2/modules-2.lock
3535
sudo rm -f ~/.gradle/caches/modules-2/gc.properties
3636
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+
3743
- name: Create release if this is a tagged workflow
3844
uses: ncipollo/release-action@v1
3945
if: startsWith(github.ref, 'refs/tags/')
4046
with:
41-
artifacts: build/libs/${{ steps.exec.outputs.paperclip }}
47+
artifacts: build/libs/PaperX-paperclip.jar
4248
name: PaperX ${{ steps.exec.outputs.version }}
4349
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)