Skip to content

Commit

Permalink
Create a GitHub action to deploy the ingest inspector (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
StepanBrychta committed Jul 3, 2024
1 parent cb733c8 commit 0c8fc21
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy-ingest-inspector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy Ingest Inspector
on:
push
# push:
# branches:
# - main

#permissions:
# id-token: write

jobs:
deploy_ingest_inspector_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: eu-west-1
role-to-assume: ${{ secrets.DEPLOY_INGEST_INSPECTOR_GHA_ROLE_ARN }}
- name: Deploy Ingest Inspector frontend
run: |
cd monitoring/ingest_inspector/frontend
sh deploy.sh

0 comments on commit 0c8fc21

Please sign in to comment.