debbug env variables #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pangea Testnet - Deploy | |
on: | |
push: | |
branches: | |
- feature/deploy-with-github-actions | |
- feature/pangea_testnet | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
SLS_ORG_TOKEN: ${{secrets.SLS_ORG_TOKEN}} | |
chainId: ${{ vars.CHAIN_ID }} | |
sendGridKey: ${{ secrets.SENDGRID_KEY }} | |
twilioAccountSid: ${{ secrets.TWILIO_ACCOUNT_SID }} | |
twilioAuthToken: ${{ secrets.TWILIO_AUTH_TOKEN }} | |
eosHistoryEndpoint: ${{vars.HISTORY_ENDPOINT}} | |
eosHttpEndpoint: ${{vars.HTTP_ENDPOINT}} | |
authVerifier: TABLE | |
authContract: login.hypha | |
authRetries: 5 | |
startAuthTimeout: 1000 | |
minAuthTimeout: 400 | |
authCodeMinutesTTL: 5 | |
accessTokenMinutesTTL: 1440 | |
refreshTokenMinutesTTL: 11520 | |
sentryDsn: ${{secrets.SENTRY_DSN}} | |
jobs: | |
deploy: | |
name: deploy | |
environment: pangeaTestnet | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- name: Debug Environment Variables | |
run: | | |
echo "Debugging Environment Variables:" | |
echo "chainId: $chainId" | |
echo "eosHistoryEndpoint: $eosHistoryEndpoint" | |
echo "eosHttpEndpoint: $eosHttpEndpoint" | |
echo "authVerifier: $authVerifier" | |
echo "authContract: $authContract" | |
echo "authRetries: $authRetries" | |
echo "startAuthTimeout: $startAuthTimeout" | |
echo "minAuthTimeout: $minAuthTimeout" | |
echo "authCodeMinutesTTL: $authCodeMinutesTTL" | |
echo "accessTokenMinutesTTL: $accessTokenMinutesTTL" | |
echo "refreshTokenMinutesTTL: $refreshTokenMinutesTTL" | |
echo "sentryDsn is set" | |
echo "sendGridKey is set" | |
echo "twilioAuthToken is set" | |
# - name: serverless deploy | |
# uses: serverless/github-action@v3.1 | |
# with: | |
# args: deploy --stage pangeaTest --region us-east-1 |