From d2a25d0d52b015d6928728e5a7354627e18164c7 Mon Sep 17 00:00:00 2001 From: Seamus Johnston Date: Wed, 31 May 2023 12:05:58 -0500 Subject: [PATCH] Fix typo in reset-db.yaml --- .github/workflows/reset-db.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reset-db.yaml b/.github/workflows/reset-db.yaml index 69fda8bff..f1b3d38c0 100644 --- a/.github/workflows/reset-db.yaml +++ b/.github/workflows/reset-db.yaml @@ -34,8 +34,8 @@ jobs: - name: Delete existing data for ${{ github.event.inputs.environment }} uses: 18f/cg-deploy-action@main with: - cf_username: ${{ secrets[CF_USERNAME] }} - cf_password: ${{ secrets[CF_PASSWORD] }} + cf_username: ${{ secrets[env.CF_USERNAME] }} + cf_password: ${{ secrets[env.CF_PASSWORD] }} cf_org: cisa-getgov-prototyping cf_space: ${{ github.event.inputs.environment }} full_command: "cf run-task getgov-${{ github.event.inputs.environment }} --command 'python manage.py flush --no-input' --name flush"