Skip to content

Commit 748d330

Browse files
author
Kjetil JD
committed
e legger på stacktrace ved feil fra gradle på github
1 parent ea718ee commit 748d330

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- name: Build
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
run: ./gradlew build
23+
run: ./gradlew build --stacktrace

.github/workflows/release-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
- name: build and update version
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29-
run: ./gradlew build release -Prelease.useAutomaticVersion=true
29+
run: ./gradlew build release --stacktrace -Prelease.useAutomaticVersion=true
3030

3131
- name: check out release-version
3232
uses: actions/checkout@v2
3333
with:
3434
ref: "release-${{ env.VERSION }}"
3535

3636
- name: publish package
37-
run: ./gradlew publish --info
37+
run: ./gradlew publish --stacktrace --info
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)