Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Updated Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Raft08 committed Mar 8, 2024
1 parent 140ba23 commit 131194e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ jobs:
distribution: 'microsoft'
- name: Build
run: ./gradlew build
env:
MAVEN_USERNAME: ${{ secrets.REPOSITORY_USER }}
MAVEN_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ repositories {
maven {
url "https://repository.atlasworld.fr/repository/maven-private/"
credentials {
username "$maven_user"
password "$maven_password"
username System.getenv("MAVEN_USERNAME")
password System.getenv("MAVEN_PASSWORD")
}
}
}
Expand Down

0 comments on commit 131194e

Please sign in to comment.