File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Manual
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ publish-manual ]
6
+
7
+ env :
8
+ sonatypeUsername : ${{ secrets.SONATYPEUSERNAME }}
9
+ sonatypePassword : ${{ secrets.SONATYPEPASSWORD }}
10
+ ORG_GRADLE_PROJECT_signingKey : ${{ secrets.GPG_PRIVATE_KEY }}
11
+ ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.PASSPHRASE }}
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : macos-13
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - name : Set up JDK
19
+ uses : actions/setup-java@v3
20
+ with :
21
+ distribution : ' zulu'
22
+ java-version : ' 17'
23
+ - uses : gradle/gradle-build-action@v2
24
+ - name : Setup versions
25
+ run : ./gradlew :updateVersions
26
+ - name : Grant execute permission for gradlew
27
+ run : chmod +x gradlew
28
+ - name : Publish Firebase Common Internal
29
+ run : ./gradlew :firebase-common-internal:publish
You can’t perform that action at this time.
0 commit comments