Skip to content

Commit

Permalink
GitHub Actions: Use proper nexus creds
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Lüpges <[email protected]>
  • Loading branch information
luepges committed Nov 4, 2024
1 parent 0938d66 commit cae9cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_release_mc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
gradle-version: ${{env.GRADLE_VERSION}}
# pass the tag as the version property (${{ github.ref_name }})
arguments: deployMC ${{env.GRADLE_CLI_OPTS}} -PmavenPassword=${{env.MAVEN_PASSWORD}} -PmavenUser=${{env.MAVEN_USER}} -PgenEMF=true -PgenTR=true -PgenTagging=true -Pversion=${{ github.ref_name }}
arguments: deployMC ${{env.GRADLE_CLI_OPTS}} -PmavenPassword=${{env.SE_NEXUS_PASSWORD}} -PmavenUser=${{env.SE_NEXUS_USER}} -PgenEMF=true -PgenTR=true -PgenTagging=true -Pversion=${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO: Create and publish the monticore.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/deploy_snapshot_mc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: ${{env.GRADLE_VERSION}}
arguments: deployMC ${{env.GRADLE_CLI_OPTS}} -PmavenPassword=${{env.MAVEN_PASSWORD}} -PmavenUser=${{env.MAVEN_USER}} -PgenEMF=true -PgenTR=true -PgenTagging=true
arguments: deployMC ${{env.GRADLE_CLI_OPTS}} -PmavenPassword=${{env.SE_NEXUS_PASSWORD}} -PmavenUser=${{env.SE_NEXUS_USER}} -PgenEMF=true -PgenTR=true -PgenTagging=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit cae9cf1

Please sign in to comment.