Skip to content

Commit

Permalink
remove / replace secrets call
Browse files Browse the repository at this point in the history
  • Loading branch information
mythilytm committed Jul 24, 2024
1 parent 795d990 commit 37dc952
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/actions/main-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ runs:
ASELO_APP_SECRET_KEY=${{ inputs.aselo-app-secret-key }}
S3_BUCKET=${{ inputs.s3-bucket }}
AWS_REGION=${{ inputs.aws-region }}
GOOGLE_SHEETS_CREDENTIALS=${{ secrets.GOOGLE_SHEETS_CREDENTIALS }}
GOOGLE_SHEET_ID=${{ secrets.GOOGLE_SHEET_ID }}
TWILIO_SERVERLESS_API_CONCURRENCY=1
EOT
shell: bash
Expand Down Expand Up @@ -199,16 +201,16 @@ runs:
- name: Update Google Sheets
shell: bash
env:
GOOGLE_SHEETS_CREDENTIALS: ${{ secrets.GOOGLE_SHEETS_CREDENTIALS }}
GOOGLE_SHEET_ID: ${{ secrets.GOOGLE_SHEET_ID }}
# GOOGLE_SHEETS_CREDENTIALS: ${{ secrets.GOOGLE_SHEETS_CREDENTIALS }}
# GOOGLE_SHEET_ID: ${{ secrets.GOOGLE_SHEET_ID }}
helpline: ${{ inputs.helpline-code }}
environments: ${{ inputs.environment-code }}
environment: ${{ inputs.environment }}
github_ref: ${{ github.ref }}
github_sha: ${{ github.sha }}
github_actor: ${{ github.triggering_actor }}
github_branch: ${{ github.ref_name }}
aws_region: ${{ secrets.AWS_DEFAULT_REGION }}
# aws_region: ${{ secrets.AWS_DEFAULT_REGION }}
run: |
echo "${GOOGLE_SHEETS_CREDENTIALS}" > credentials.json
python update_matrix

0 comments on commit 37dc952

Please sign in to comment.