Skip to content

Commit

Permalink
fix: Test helm_release trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
mvaalexp committed Jun 13, 2024
1 parent 5f2a2d6 commit 7bd22ea
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/helm_release_tester.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build and Release Container and Helm Chart

on:
push:
branches:
- mvaal/maintenance

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- id: github-repository
uses: ASzc/change-string-case-action@v6
with:
string: ${{ github.repository }}

- name: Set up Go ^1.21
uses: actions/setup-go@v5
with:
go-version: ^1.21

- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}

- name: Get specific changed files
id: helm-specific-changes
uses: tj-actions/changed-files@v44
with:
files: |
charts/kubernetes-sidecar-injector
- name: List all changed files markdown files
if: steps.helm-specific-changes.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.helm-specific-changes.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
2 changes: 0 additions & 2 deletions charts/kubernetes-sidecar-injector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ container:
metricsPort: 9090

podAnnotations: {}

podLabels: {}

podSecurityContext: {}

sidecars:
Expand Down

0 comments on commit 7bd22ea

Please sign in to comment.