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 8a9d38e commit 825d40cCopy full SHA for 825d40c
.github/workflows/release.yml
@@ -0,0 +1,29 @@
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: script/build
28
+ env:
29
+ HUDSON: true
0 commit comments