File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -74,10 +74,30 @@ jobs:
74
74
with :
75
75
validate-only : ' true'
76
76
base-path-to-features : ' ./src'
77
-
77
+
78
+ bump-images :
79
+ needs : [validate]
80
+ name : ' Bump Image Version'
81
+ runs-on : ubuntu-latest
82
+ permissions :
83
+ contents : write
84
+ pull-requests : write
85
+ issues : write
86
+ steps :
87
+ - uses : actions/checkout@v4
88
+ with :
89
+ fetch-depth : 0
90
+ - name : ' Install Dependencies'
91
+ run : yarn global add semver
92
+ - name : ' Run Image Version Bump'
93
+ env :
94
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
95
+ GH_ACTIONS_USERNAME : ${{ vars.GH_ACTIONS_USERNAME }}
96
+ run : make bump-version
97
+
78
98
semantic-release :
79
99
name : Semantic Release
80
- needs : [validate ]
100
+ needs : [bump-images ]
81
101
runs-on : ubuntu-latest
82
102
permissions :
83
103
contents : write
You can’t perform that action at this time.
0 commit comments