-
Notifications
You must be signed in to change notification settings - Fork 35
43 lines (37 loc) · 1.09 KB
/
helm_release_tester.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build and Release Container and Helm Chart
on:
push:
branches:
- mvaal/maintenance
jobs:
release:
name: Tester
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