We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0daf92d commit 0230d41Copy full SHA for 0230d41
.github/workflows/ci.yml
@@ -65,3 +65,18 @@ jobs:
65
run: |
66
unzip -j /home/runner/work/*.zip -d app/libs/
67
./gradlew test
68
+ test_publish_to_maven:
69
+ runs-on: ubuntu-latest
70
+# if: ${{ github.ref == 'refs/heads/master' }}
71
+ permissions:
72
+ contents: read
73
+ steps:
74
+ - uses: actions/checkout@v4
75
+ - name: Set up JDK 8
76
+ uses: actions/setup-java@v4
77
+ with:
78
+ java-version: '8'
79
+ distribution: 'zulu'
80
+
81
+ - name: Test PublishToMaven
82
+ run: ./gradlew publishToMavenLocal
0 commit comments