Skip to content

Commit

Permalink
Add MAVEN_SPACE_USERNAME and MAVEN_SPACE_PASSWORD to GitHub Actions w…
Browse files Browse the repository at this point in the history
…orkflow

In this commit, MAVEN_SPACE_USERNAME and MAVEN_SPACE_PASSWORD were added to the environment variables for GitHub Actions workflow. This ensures secure handling of the space username and password required for the Maven repository. It has been updated across all setup and build tasks.
  • Loading branch information
fscarponi committed May 20, 2024
1 parent 425c554 commit ed37a04
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
with:
submodules: true
- uses: gradle/gradle-build-action@v3
env:
MAVEN_SPACE_PASSWORD: ${{ secrets.MAVEN_SPACE_PASSWORD }}
MAVEN_SPACE_USERNAME: ${{ secrets.MAVEN_SPACE_USERNAME }}
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -50,6 +53,9 @@ jobs:
with:
submodules: true
- uses: gradle/gradle-build-action@v3
env:
MAVEN_SPACE_PASSWORD: ${{ secrets.MAVEN_SPACE_PASSWORD }}
MAVEN_SPACE_USERNAME: ${{ secrets.MAVEN_SPACE_USERNAME }}
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -82,6 +88,9 @@ jobs:
with:
submodules: true
- uses: gradle/gradle-build-action@v3
env:
MAVEN_SPACE_PASSWORD: ${{ secrets.MAVEN_SPACE_PASSWORD }}
MAVEN_SPACE_USERNAME: ${{ secrets.MAVEN_SPACE_USERNAME }}
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
Expand Down

0 comments on commit ed37a04

Please sign in to comment.