Skip to content

Commit 584e2b8

Browse files
committed
github actions: fix pushing from release workflow
1 parent ed57c9d commit 584e2b8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/jreleaser-release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ on:
1313
jobs:
1414
release:
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 60
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v3
1920
with:
21+
persist-credentials: false
2022
fetch-depth: 0
2123

2224
- name: Setup Java
@@ -46,8 +48,8 @@ jobs:
4648
with:
4749
name: jreleaser-release
4850
path: |
49-
out/jreleaser/trace.log
50-
out/jreleaser/output.properties
51+
build/jreleaser/trace.log
52+
build/jreleaser/output.properties
5153
5254
- name: Update version in properties
5355
run: sed -i 's/^version=.*/version=${{ github.event.inputs.nextVersion }}-SNAPSHOT/g' gradle.properties
@@ -57,4 +59,6 @@ jobs:
5759
with:
5860
github_token: ${{ secrets.JRELEASER_GITHUB_TOKEN }}
5961
message: "chore: bump version to ${{ github.event.inputs.nextVersion }}-SNAPSHOT"
62+
author_email: '[email protected]'
63+
author_name: 'Framefork BOT'
6064
tags: true

0 commit comments

Comments
 (0)