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 c05b1b7 commit 34ce5f8Copy full SHA for 34ce5f8
.github/workflows/release-sdk.yaml
@@ -23,6 +23,12 @@ jobs:
23
release-sdk:
24
runs-on: ubuntu-latest
25
steps:
26
+ - name: Checkout SDK branch
27
+ uses: actions/checkout@v4
28
+ with:
29
+ ref: ${{ inputs.branch }}
30
+ path: ${{ github.workspace }}
31
+
32
- name: Set up JDK 21
33
uses: actions/setup-java@v4
34
with:
@@ -35,14 +41,8 @@ jobs:
35
41
gpg-passphrase: GPG_PASSPHRASE
36
42
settings-path: ${{ github.workspace }}
37
43
38
- - name: Checkout SDK branch
39
- uses: actions/checkout@v4
40
- with:
- ref: ${{ inputs.branch }}
- path: ${{ github.workspace }}
-
44
- name: Release SDK
45
- working-directory: code
+ working-directory: ${{ github.workspace }}/code
46
env:
47
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
48
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
0 commit comments