Skip to content

Commit

Permalink
added debug output to workflow and SNAPSHOT to publish to allow overw…
Browse files Browse the repository at this point in the history
…riting
  • Loading branch information
wolpi committed Jul 30, 2023
1 parent 53c907a commit ab84284
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- name: Publish package
if: ${{ github.event_name == 'push' }}
run: echo github.event_name: ${{ github.event_name }}.
if: ${{ github.event_name == 'push' }}
uses: gradle/gradle-build-action@v2
with:
arguments: publish
Expand Down
2 changes: 1 addition & 1 deletion primitiveFTPd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ publishing {
maven(MavenPublication) {
groupId = 'org.primftpd'
artifactId = 'app'
version = 'latest'
version = 'latest-SNAPSHOT'

artifact file('build/outputs/apk/debug/primitiveFTPd-debug.apk');
}
Expand Down

0 comments on commit ab84284

Please sign in to comment.