Skip to content

Commit

Permalink
figuring out env variable syntax part6
Browse files Browse the repository at this point in the history
  • Loading branch information
masonmenges committed Apr 24, 2024
1 parent b06ff4f commit 1834879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/aws_datalake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
PREFECT_API_KEY: ${{ secrets.PREFECT_API_KEY }}
IMG_REPO: ${{ secrets.ECR_REPO }}
WORKSPACE: ${{ github.ref == 'refs/heads/main' && 'se-demos' || 'se-demos-dev' }}
WORK_POOL_NAME: ${{ github.ref == 'refs/heads/main' && "${{ env.PROD_WORKPOOL }}" || "${{ env.DEV_WORKPOOL}}" }}
WORK_POOL_NAME: ${{ github.ref == 'refs/heads/main' && env.PROD_WORKPOOL || env.DEV_WORKPOOL }}
SCHEDULES_ACTIVE: ${{ github.ref == 'refs/heads/main' && 'True' || 'False' }}
run: |
cd $PROJECT_DIRECTORY
Expand Down

0 comments on commit 1834879

Please sign in to comment.