File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Release Charts
2
+
3
+ on :
4
+ push :
5
+
6
+ env :
7
+ tag_prefix : v
8
+ crds_tag_prefix : crds_v
9
+
10
+ jobs :
11
+ traefik-crds :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+ with :
18
+ fetch-depth : 0
19
+
20
+ - name : Render changelog configuration
21
+ env :
22
+ REGEXP : " crds"
23
+ run : |
24
+ export DATE=$(date +%F); cat .github/workflows/changelog.json | envsubst > /tmp/changelog.json; cat /tmp/changelog.json
25
+
26
+ - name : Build Changelog
27
+ id : changelog
28
+ uses : mikepenz/release-changelog-builder-action@v5
29
+ with :
30
+ toTag : crds_v1.0.0
31
+ configuration : " /tmp/changelog.json"
32
+ env :
33
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34
+
35
+ - name : debug
36
+ run : |
37
+ cat <<EOF
38
+ ${{ steps.changelog.outputs.changelog }}
39
+ EOF
You can’t perform that action at this time.
0 commit comments