Skip to content

Commit

Permalink
Fix running multiple builds in run step in workflow action (#92)
Browse files Browse the repository at this point in the history
Co-authored-by: Malini Mahalakshmi Venkatachari <[email protected]>
  • Loading branch information
maluchari and maluchari authored Aug 20, 2021
1 parent a8dbf65 commit 658a893
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ jobs:
java-version: '8'

- name: 3. Perform build
run: ./gradlew build
run: ./gradlew -p transportable-udfs-examples clean build -s
run: |
./gradlew build
./gradlew -p transportable-udfs-examples clean build -s
- name: 4. Perform release
# Release job, only for pushes to the main development branch
Expand Down

0 comments on commit 658a893

Please sign in to comment.