Skip to content

Commit

Permalink
ci: update jar paths
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTJP committed May 14, 2023
1 parent 59fef1e commit 27dd30b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle2-${{ hashFiles('**/build.gradle', '**/build.properties', '**/gradle-wrapper.properties') }}
key: ${{ runner.os }}-gradle2-${{ hashFiles('**/build.gradle', '**/build.properties', '**/gradle.properties', '**/gradle-wrapper.properties') }}

- name: Build
run: ./gradlew build
Expand Down Expand Up @@ -153,10 +153,10 @@ jobs:
rm -f ~/.gradle/caches/modules-2/gc.properties
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: project-red-${{ steps.versioning.outputs.version }}
path: |
build/libs
'*/build/libs/ProjectRed-*.jar'
CHANGELOG.md
CHANGELOG.txt
6 changes: 3 additions & 3 deletions .github/workflows/verify-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle2-${{ hashFiles('**/build.gradle', '**/build.properties', '**/gradle-wrapper.properties') }}
key: ${{ runner.os }}-gradle2-${{ hashFiles('**/build.gradle', '**/build.properties', '**/gradle.properties', '**/gradle-wrapper.properties') }}

- name: Build with Gradle
run: ./gradlew build # TODO test
Expand All @@ -73,7 +73,7 @@ jobs:
rm -f ~/.gradle/caches/modules-2/gc.properties
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: project-red-${{ steps.versioning.outputs.version }}
path: build/libs
path: '*/build/libs/ProjectRed-*.jar'

0 comments on commit 27dd30b

Please sign in to comment.