Skip to content

Commit

Permalink
chore: 🤖 Fixing release workflow (add git info)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeljw committed Mar 12, 2022
1 parent a395ec5 commit 12906c8
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/release-sbt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- run: |
git config user.name github-actions
git config user.email [email protected]
- uses: actions/setup-java@v2
with:
distribution: "temurin"
Expand All @@ -35,14 +39,14 @@ jobs:
working-directory: .

create-github-release:
name: Create GitHub Release and Git tag
runs-on: ubuntu-latest
needs: [publish-sbt]
environment: Release
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: cucumber/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
name: Create GitHub Release and Git tag
runs-on: ubuntu-latest
needs: [publish-sbt]
environment: Release
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: cucumber/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 12906c8

Please sign in to comment.