Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove Project Name env #92

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/ci_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
### within it's own project directory barring external requirements
### i.e. workpools or shared resources.

name: Build image and deploy Prefect flow - NAME_OF_PROJECT
name: Build image and deploy Prefect flow - PROJECT_NAME

env:
PROJECT_NAME: NAME_OF_PROJECT
PROJECT_DIRECTTORY: flows/PATH/TO/PROJECT
PROD_WORKPOOL: PROD_WORKPOOL_NAME # Preconfigured workpool in the se-demos workspace
DEV_WORKPOOL: DEV_WORKPOOL_NAME # Preconfigured workpool in the se-demos-dev workspace
Expand All @@ -24,7 +23,7 @@ on:

jobs:
deploy:
name: Deploy ${{ env.PROJECT_NAME }} flows
name: Deploy PROJECT_NAME flows
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/aws_datalake.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Build image and deploy Prefect flow - S3 Datalake

env:
PROJECT_NAME: S3 Datalake
PROJECT_DIRECTORY: flows/aws/datalake
PROD_WORKPOOL: Demo-ECS
DEV_WORKPOOL: Dev-ECS
Expand All @@ -18,7 +17,7 @@ on:

jobs:
deploy:
name: "Deploy $PROJECT_NAME flows"
name: Deploy S3flows
runs-on: ubuntu-latest

steps:
Expand Down