Skip to content

Commit 12906c8

Browse files
committed
chore: 🤖 Fixing release workflow (add git info)
1 parent a395ec5 commit 12906c8

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

‎.github/workflows/release-sbt.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v2
2323

24+
- run: |
25+
git config user.name github-actions
26+
git config user.email [email protected]
27+
2428
- uses: actions/setup-java@v2
2529
with:
2630
distribution: "temurin"
@@ -35,14 +39,14 @@ jobs:
3539
working-directory: .
3640

3741
create-github-release:
38-
name: Create GitHub Release and Git tag
39-
runs-on: ubuntu-latest
40-
needs: [publish-sbt]
41-
environment: Release
42-
permissions:
43-
contents: write
44-
steps:
45-
- uses: actions/checkout@v2
46-
- uses: cucumber/[email protected]
47-
with:
48-
github-token: ${{ secrets.GITHUB_TOKEN }}
42+
name: Create GitHub Release and Git tag
43+
runs-on: ubuntu-latest
44+
needs: [publish-sbt]
45+
environment: Release
46+
permissions:
47+
contents: write
48+
steps:
49+
- uses: actions/checkout@v2
50+
- uses: cucumber/[email protected]
51+
with:
52+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)