Skip to content

Commit

Permalink
Add Workflow Back (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyagreco authored Nov 8, 2024
1 parent d199bd2 commit 4d47dc1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deploy-chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release Chart
on:
push:
branches:
- main
paths:
- 'helm/agent/**'

jobs:
release-chart:
name: Chart release
runs-on: ubuntu-latest
environment: prod
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-west-2
role-to-assume: ${{ secrets.AWS_ROLE }}
- name: Helm release
uses: superblocksteam/[email protected]
with:
repo: s3://superblocks-public-helm-repo/superblocks
chart: ./helm/agent
forceRelease: false

0 comments on commit 4d47dc1

Please sign in to comment.