Skip to content

Commit

Permalink
Fix CI wrokflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaslogen committed Jan 12, 2024
1 parent 760c43f commit ab384c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
- name: Run API Check
run: ./gradlew apiCheck
env:
CI: ${{ github.GITHUB_WORKFLOW }}
CI_FLOW: ${{ github.workflow }}

- name: Run Lint
run: ./gradlew lint
env:
CI: ${{ github.GITHUB_WORKFLOW }}
CI_FLOW: ${{ github.workflow }}

- name: Run tests with code coverage
run: ./gradlew check
env:
CI: ${{ github.GITHUB_WORKFLOW }}
CI_FLOW: ${{ github.workflow }}

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
PACKAGE_VERSION: ${{ env.PACKAGE_VERSION }}
CI: ${{ github.GITHUB_WORKFLOW }}
CI_FLOW: ${{ github.workflow }}
run: ./gradlew publish --stacktrace

- name: Finish Maven Central Release
Expand All @@ -75,5 +75,5 @@ jobs:
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
PACKAGE_VERSION: ${{ env.PACKAGE_VERSION }}
CI: ${{ github.GITHUB_WORKFLOW }}
CI_FLOW: ${{ github.workflow }}
run: ./gradlew closeAndReleaseRepository --no-daemon --stacktrace

0 comments on commit ab384c0

Please sign in to comment.