Skip to content

Commit

Permalink
fix: update gh action with new redis auth creds
Browse files Browse the repository at this point in the history
  • Loading branch information
dallen4 committed Jan 5, 2025
1 parent bbc1e87 commit 90308d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/web_ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@ jobs:
STAGE: ${{ github.event.deployment.environment }}
BASE_URL: ${{ github.event.deployment_status.target_url }}
DEADROP_API_URL: ${{ secrets.DEADROP_API_URL }}
REDIS_URL: ${{ secrets.REDIS_URL }}
REDIS_REST_URL: ${{ secrets.REDIS_REST_URL }}
REDIS_REST_TOKEN: ${{ secrets.REDIS_REST_TOKEN }}
run: |
export STAGE=$STAGE
echo $STAGE
export DEADROP_API_URL=$DEADROP_API_URL
echo $DEADROP_API_URL
export TEST_URI=$BASE_URL
echo $TEST_URI
export REDIS_URL=$REDIS_URL
export REDIS_REST_URL=$REDIS_REST_URL
export REDIS_REST_TOKEN=$REDIS_REST_TOKEN
CI=true yarn test:e2e --trace on
- uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 90308d1

Please sign in to comment.