Skip to content

Commit

Permalink
Fixed error with wrong version
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Aug 16, 2022
1 parent 24ed54a commit 4610ac1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_with_gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build with Gradle
run: gradle build
env:
ADEMIERE_LIBRARY_VERSION: ${{ secrets.ADEMIERE_LIBRARY_VERSION }}
ADEMPIERE_LIBRARY_VERSION: 'test-version'
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PGP_SECRET }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PGP_PASSPHRASE }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.OSSRH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_with_gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Publish with Gradle
run: gradle publish
env:
ADEMIERE_LIBRARY_VERSION: ${{ github.event.release.tag_name }}
ADEMPIERE_LIBRARY_VERSION: ${{ github.event.release.tag_name }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PGP_SECRET }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PGP_PASSPHRASE }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.OSSRH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ java {
}

def entityType = 'WHH'
version = System.getenv("ADEMIERE_LIBRARY_VERSION")
version = System.getenv("ADEMPIERE_LIBRARY_VERSION")

jar {
manifest {
Expand Down

0 comments on commit 4610ac1

Please sign in to comment.