Skip to content

Commit

Permalink
Update token reference in deployment workflow
Browse files Browse the repository at this point in the history
Changed the token reference within the Github actions deployment workflow to use secrets instead of environment variables. This enhances security as sensitive data is not exposed in the environment.
  • Loading branch information
josch87 committed Jun 8, 2024
1 parent c470cf8 commit 899a188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
environment: production
env:
VITE_BETTERSTACK_TOKEN: ${{ env.VITE_BETTERSTACK_TOKEN }}
VITE_BETTERSTACK_TOKEN: ${{ secrets.VITE_BETTERSTACK_TOKEN }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 899a188

Please sign in to comment.