Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun committed Mar 26, 2024
1 parent 8be2336 commit 591501d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches:
- '*'

name: Monitoring Pipeline

jobs:
deploy:
runs-on: ubuntu-latest

env:
ECR_REGION: us-east-2
ECR_REPO: 956994857092.dkr.ecr.us-east-2.amazonaws.com
CHART_NAME: kube-prometheus-stack

steps:
- uses: actions/checkout@v2

- name: Authenticate ECR public authenticate
shell: bash
run: |
aws ecr-public get-login-password --region ${{ env.ECR_REGION }} | helm registry login --username AWS --password-stdin ${{ inputs.ECR_REPO }}
helm package accuknox-*
helm push accuknox-* oci://${{ env.ECR_REPO }}

0 comments on commit 591501d

Please sign in to comment.