Skip to content

Commit 0e071a4

Browse files
committed
Temp fix
1 parent 150ebda commit 0e071a4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/publish-manual.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)