Skip to content

Commit 084b651

Browse files
committed
Drop the -i from build
1 parent 030d1a4 commit 084b651

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Gradle
2828
uses: gradle/actions/setup-gradle@v4
2929
- name: Test
30-
run: ./gradlew check -i --no-daemon
30+
run: ./gradlew check --no-daemon
3131
- name: Upload Results
3232
uses: actions/upload-artifact@v4
3333
if: always() # This ensures that test results are uploaded even if the test step fails
@@ -54,21 +54,3 @@ jobs:
5454
# - name: Build and test
5555
# run: sbt -v publishLocalGradleDependencies ++test
5656
# working-directory: ./tasks-scala
57-
#
58-
# publish-snapshot:
59-
# runs-on: ubuntu-latest
60-
# needs: test
61-
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
62-
# steps:
63-
# - uses: actions/checkout@v3
64-
# - name: Set up JDK 11
65-
# uses: actions/setup-java@v3
66-
# with:
67-
# java-version: 11
68-
# distribution: 'temurin'
69-
# - name: Publish Snapshot
70-
# run: ./gradlew publish --no-daemon -i
71-
# env:
72-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73-
# MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
74-
# MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}

.github/workflows/publish-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
java-version: 17
1414
distribution: 'temurin'
1515
- name: Publish Snapshot
16-
run: ./gradlew -PbuildRelease=true build publish --no-daemon -i
16+
run: ./gradlew -PbuildRelease=true build publish --no-daemon
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
1919
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }}

0 commit comments

Comments
 (0)