Skip to content

Commit

Permalink
github actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan committed Sep 4, 2024
1 parent a64d64c commit 5e19b42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
gradle-version: current

- name: Gradle Build and Test
run: -p recipes --build-cache build test e2eTest
run: gradle -p recipes --build-cache build test e2eTest
2 changes: 1 addition & 1 deletion .github/workflows/gradle-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
gradle-version: current

- name: Gradle Build and Test
run: --build-cache publish
run: gradle publish --parallel
env:
gpg_private_key: ${{ secrets.gpg_private_key }}
gpg_passphrase: ${{ secrets.gpg_passphrase }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-publish-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
gradle-version: current

- name: Publish to Maven Repository
run: gradle --build-cache publish --parallel
run: gradle publish --parallel
env:
gpg_private_key: ${{ secrets.gpg_private_key }}
gpg_passphrase: ${{ secrets.gpg_passphrase }}
Expand Down

0 comments on commit 5e19b42

Please sign in to comment.