Skip to content

Commit

Permalink
Updated env names
Browse files Browse the repository at this point in the history
  • Loading branch information
vrudas committed Feb 11, 2024
1 parent b660176 commit 1d9515a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_build_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
- name: Execute gradle assemble
run: ./gradlew assemble
env:
REPO_USERNAME: ${{ env.USERNAME }}
REPO_USERNAME: ${{ vars.USERNAME }}
REPO_PASSWORD: ${{ secrets.PASSWORD }}
8 changes: 4 additions & 4 deletions .github/workflows/run_lib_publish_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:

- name: Print Repsy credentials
run: |
echo "$USERNAME"
echo "$PASSWORD"
echo "$REPO_USERNAME"
echo "$REPO_PASSWORD"
env:
REPO_USERNAME: ${{ env.USERNAME }}
REPO_USERNAME: ${{ vars.USERNAME }}
REPO_PASSWORD: ${{ secrets.PASSWORD }}

- name: Publish dependency
run: ./gradlew :practice:open-api-generation:publish
env:
REPO_USERNAME: ${{ env.USERNAME }}
REPO_USERNAME: ${{ vars.USERNAME }}
REPO_PASSWORD: ${{ secrets.PASSWORD }}

0 comments on commit 1d9515a

Please sign in to comment.