Skip to content

Commit 37fe4d4

Browse files
committed
Fix2
Signed-off-by: Pavol Loffay <[email protected]>
1 parent 9e1ba11 commit 37fe4d4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@ jobs:
3535
# TERM: dumb
3636

3737
- name: Set signing key
38-
run: export ORG_GRADLE_PROJECT_signingKey=$(echo $SIGNING_KEY | base64 -d) && echo $ORG_GRADLE_PROJECT_signingKey
38+
run: echo "ORG_GRADLE_PROJECT_signingKey=$(echo $SIGNING_KEY | base64 -d)" >> $GITHUB_ENV
3939
env:
4040
SIGNING_KEY: ${{ secrets.MAVEN_SIGNING_KEY }}
4141

4242
- name: Print signing key
43-
run: echo $FOO
44-
env:
45-
FOO: ORG_GRADLE_PROJECT_signingKey
43+
run: echo $ORG_GRADLE_PROJECT_signingKey
4644

4745
- name: publish to maven
4846
run: ./gradlew publish closeAndReleaseRepository

0 commit comments

Comments
 (0)