Skip to content

Commit

Permalink
feat: github actions secrets 주입 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
peeerr committed Oct 26, 2024
1 parent 04a73be commit 167c4ee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pr_weekly_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ jobs:
aws.s3.accessKey: ${{ secrets.AWS_S3_ACCESS_KEY }}
aws.s3.secretKey: ${{ secrets.AWS_S3_SECRET_KEY }}

- name: Secrets 주입 확인
run: |
echo "RDS_URL is set to ${{ secrets.RDS_URL }}"
echo "RDS_USERNAME is set to ${{ secrets.RDS_USERNAME }}"
echo "RDS_PASSWORD is set (masked)"
echo "AWS_S3_BUCKET is set to ${{ secrets.AWS_S3_BUCKET }}"
echo "AWS_S3_ACCESS_KEY is set to ${{ secrets.AWS_S3_ACCESS_KEY }}"
echo "AWS_S3_SECRET_KEY is set (masked)
- name: 빌드 테스트 수행
run: |
chmod +x ./gradlew
Expand Down

0 comments on commit 167c4ee

Please sign in to comment.