Skip to content

Commit

Permalink
chore: add service upgrade workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Mar 18, 2024
1 parent f7723b6 commit b6d3cb0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/upgrade-services.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Upgrade Services Charts

on:
repository_dispatch:
types: [upgrade-services]
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: master

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Add helm repos
run: .github/add-repos.sh

- name: Install dependencies
run: pip install -r requirements.txt

- name: Bump chart versions
run: python upgrade.py

- name: Bump chart versions
run: python upgrade.py

- name: Debug
run: git diff

0 comments on commit b6d3cb0

Please sign in to comment.