File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release on demand
2+
3+ on : [workflow_dispatch]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : Check out
10+ uses : actions/checkout@v3
11+ - name : Set Github identity
12+ run : |
13+ git config --global user.name clojure-build
14+ git config --global user.email "clojure-build@users.noreply.github.com"
15+ - name : Set up Java
16+ uses : actions/setup-java@v3
17+ with :
18+ java-version : 8
19+ distribution : ' temurin'
20+ cache : ' maven'
21+ server-id : sonatype-nexus-staging
22+ server-username : MAVEN_USERNAME
23+ server-password : MAVEN_PASSWORD
24+ gpg-private-key : ${{ secrets.OSSRH_GPG_SECRET_KEY }}
25+ gpg-passphrase : GPG_PASSPHRASE
26+ - name : Release
27+ run : |
28+ cd script/closure-library-release
29+ ./closure-library-release.sh
30+ env :
31+ HUDSON : true
You can’t perform that action at this time.
0 commit comments