Skip to content

Commit

Permalink
Working commit for [KDEV-51592] add code commit [MASS PR]
Browse files Browse the repository at this point in the history
  • Loading branch information
venkykust committed Mar 19, 2024
1 parent 18bc38d commit 92cf7eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cron-sync-tocodecommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
git config --global user.email "[email protected]"
git config --global credential.helper store
# Store CodeCommit credentials
echo "https://${{ secrets.CODECOMMITUSER }}:${{ secrets.CODECOMMITPASSWORD }}@git-codecommit.us-east-1.amazonaws.com" > ~/.git-credentials
CODECOMMIT_USER_TRIMMED=$(echo "${{ secrets.CODECOMMIT_USER }}" | xargs)
CODECOMMIT_PASSWORD_TRIMMED=$(echo "${{ secrets.CODECOMMIT_PASSWORD }}" | xargs)
echo "https://${CODECOMMIT_USER_TRIMMED}:${CODECOMMIT_PASSWORD_TRIMMED}@git-codecommit.us-east-1.amazonaws.com" > ~/.git-credentials
- name: Echo the AWS CodeCommit Repository URL
run: |
Expand Down

0 comments on commit 92cf7eb

Please sign in to comment.