File tree Expand file tree Collapse file tree 8 files changed +60
-532
lines changed
functions-framework-invoker Expand file tree Collapse file tree 8 files changed +60
-532
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Maven Publish
2
+ on :
3
+ push :
4
+ branches :
5
+ - ' main'
6
+ tags :
7
+ - ' *'
8
+ paths :
9
+ - ' .github/workflows/**'
10
+ - ' functions-framework-api/pom.xml'
11
+ - ' functions-framework-api/src/**'
12
+ - ' functions-framework-invoker/pom.xml'
13
+ - ' functions-framework-invoker/src/main/**'
14
+
15
+ jobs :
16
+ publish :
17
+ runs-on : ubuntu-18.04
18
+ steps :
19
+ - name : Check out Git repository
20
+ uses : actions/checkout@v3
21
+
22
+ - name : Install Java and Maven
23
+ uses : actions/setup-java@v1
24
+ with :
25
+ java-version : 11
26
+
27
+ - name : Publish framework API
28
+ uses : samuelmeuli/action-maven-publish@v1
29
+ with :
30
+ directory : functions-framework-api
31
+ gpg_private_key : ${{ secrets.GPG_KEY }}
32
+ gpg_passphrase : ${{ secrets.GPG_PASSWORD }}
33
+ nexus_username : ${{ secrets.OSSRH_USER }}
34
+ nexus_password : ${{ secrets.OSSRH_PASSWORD }}
35
+
36
+ - name : Publish framework invoker
37
+ uses : samuelmeuli/action-maven-publish@v1
38
+ with :
39
+ directory : functions-framework-invoker
40
+ gpg_private_key : ${{ secrets.GPG_KEY }}
41
+ gpg_passphrase : ${{ secrets.GPG_PASSWORD }}
42
+ nexus_username : ${{ secrets.OSSRH_USER }}
43
+ nexus_password : ${{ secrets.OSSRH_PASSWORD }}
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments