Skip to content

Commit

Permalink
💚 Pass missing environment variables to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ThierryO committed Jan 29, 2025
1 parent 9ee63d5 commit 09f1503
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check_on_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ on:
push:
branches-ignore:
- main
- master
- ghpages

name: "check package with checklist"
Expand All @@ -14,6 +13,10 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
N2KBUCKET: ${{ secrets.N2KBUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_DEFAULT_REGION: ${{ AWS_DEFAULT_REGION }}
AWS_SECRET_ACCESS_KEY: ${{ AWS_SECRET_ACCESS_KEY }}
permissions:
contents: read
steps:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/check_on_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
N2KBUCKET: ${{ secrets.N2KBUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- uses: inbo/actions/check_pkg@checklist-0.4.1

0 comments on commit 09f1503

Please sign in to comment.