Skip to content

Commit

Permalink
CLeanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alorma committed Feb 6, 2024
1 parent dd34f44 commit ee16a14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'"
build:
name: Build debug
name: Build
needs: [ prepare-env ]
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
run: ./gradlew :sample:lintRelease
# Run lint on app (runs on all modules) in order to generate a single report instead of a report per module
fake-publish:
needs: [ build-dev, build-release, java-checks, ktlint, lint ]
needs: [ build, java-checks, ktlint, lint ]
runs-on: size/big
steps:
# Runs upload, and then closes & releases the repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
git fetch --unshallow
sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'"
build-dev:
build:
name: Build
needs: [ prepare-env ]
runs-on: macos-latest
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
run: ./gradlew :sample:lintRelease

publish:
needs: [ build-dev, build-release, java-checks, ktlint, lint ]
needs: [ build, java-checks, ktlint, lint ]
runs-on: size/big
steps:
# Runs upload, and then closes & releases the repository
Expand Down

0 comments on commit ee16a14

Please sign in to comment.