Skip to content

Commit

Permalink
fix(ci): right way of using secrets / vars
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoscode committed Nov 27, 2023
1 parent 3289407 commit e97f9da
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/update-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ jobs:
- name: Send notification
if: failure()
env:
MAILJET_KEY: ${{ secrets.MAILJET_KEY }}
MAILJET_SECRET: ${{ secrets.MAILJET_SECRET }}
MAILJET_FROM_MAIL: ${{ vars.MAILJET_FROM_MAIL }}
MAILJET_TO_MAIL: ${{ vars.MAILJET_TO_MAIL }}
MAILJET_SUBJECT: ${{ vars.MAILJET_SUBJECT }}
run: |
./pipeline/send_mail.sh

0 comments on commit e97f9da

Please sign in to comment.