diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index e343e00..25ca610 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -18,7 +18,7 @@ jobs: release_name: Release ${{ github.ref }} draft: false prerelease: false - - name: publish + - name: publish to gradle env: GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} diff --git a/.github/workflows/test-workflow.yaml b/.github/workflows/test-workflow.yaml index f3292df..7dee396 100644 --- a/.github/workflows/test-workflow.yaml +++ b/.github/workflows/test-workflow.yaml @@ -1,4 +1,4 @@ -name: tests +name: check on: push: @@ -7,11 +7,11 @@ on: branches: [ master ] jobs: - build: + tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: test coverage + - name: test and publish coverage env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: ./gradlew jacocoTestReport coverallsJacoco