Skip to content

Commit ce93c13

Browse files
committed
Specify environment URLs in the deployment workflows
1 parent 81d51bb commit ce93c13

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ concurrency:
1212
jobs:
1313
deploy:
1414
runs-on: ubuntu-latest
15-
environment: AWS
15+
environment:
16+
name: AWS
17+
url: https://ai-demo.mfng.strict.software
1618
env:
1719
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
1820
AWS_HANDLER_VERIFY_HEADER: ${{ secrets.AWS_HANDLER_VERIFY_HEADER }}

.github/workflows/preview-deployment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
deploy-preview:
1313
if: github.event.pull_request.head.repo.full_name == github.repository
1414
runs-on: ubuntu-latest
15-
environment: AWS Preview
15+
environment:
16+
name: AWS Preview
17+
url: https://ai-demo-preview.mfng.strict.software
1618
env:
1719
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
1820
AWS_HANDLER_VERIFY_HEADER: ${{ secrets.AWS_HANDLER_VERIFY_HEADER }}

0 commit comments

Comments
 (0)