Skip to content

Commit

Permalink
github workflow env syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro100 committed Apr 25, 2024
1 parent f55d637 commit c118417
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_deploy_java_language_bindings.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Deploy
name: Build and Deploy Java Language Bindings

on:
push:
Expand Down Expand Up @@ -37,10 +37,10 @@ jobs:
java-version: '17.0.11'
distribution: 'temurin'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: MAVEN_GPG_PRIVATE_KEY
gpg-passphrase: MAVEN_GPG_PASSPHRASE
server-username: ${{ env.MAVEN_USERNAME }}
server-password: ${{ env.MAVEN_PASSWORD }}
gpg-private-key: ${{ env.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: ${{ env.MAVEN_GPG_PASSPHRASE }}

- name: Build and package
run: |
Expand Down

0 comments on commit c118417

Please sign in to comment.