Skip to content

Commit

Permalink
chore(github): 🤖 fix: move secrets to env
Browse files Browse the repository at this point in the history
  • Loading branch information
apttx committed Dec 3, 2024
1 parent 2d97262 commit b314fc0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/continuousIntgration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ on:
jobs:
lint_frontend:
runs-on: ubuntu-latest
secrets:
env:
HEDERA_ACCOUNT_ID: ${{ secrets.HEDERA_ACCOUNT_ID }}
HEDERA_PRIVATE_KEY: ${{ secrets.HEDERA_PRIVATE_KEY }}
env:
HEDERA_ENVIRONMENT: ${{ env.HEDERA_ENVIRONMENT }}
steps:
# setup
Expand All @@ -29,10 +28,9 @@ jobs:

build_frontend:
runs-on: ubuntu-latest
secrets:
env:
HEDERA_ACCOUNT_ID: ${{ secrets.HEDERA_ACCOUNT_ID }}
HEDERA_PRIVATE_KEY: ${{ secrets.HEDERA_PRIVATE_KEY }}
env:
HEDERA_ENVIRONMENT: ${{ env.HEDERA_ENVIRONMENT }}
steps:
# setup
Expand Down

0 comments on commit b314fc0

Please sign in to comment.