File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
tools/pytorchjob-generator/chart Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Release Charts
2+
3+ on :
4+ push :
5+ # Sequence of patterns matched against refs/tags
6+ tags :
7+ - ' v*' # Push events to matching v*, i.e. v1.0, v20.15.10
8+
9+ jobs :
10+ release :
11+ permissions :
12+ contents : write
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+ with :
18+ fetch-depth : 0
19+
20+ - name : Configure Git
21+ run : |
22+ git config user.name "$GITHUB_ACTOR"
23+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
24+
25+ - name : Install Helm
26+ uses : azure/setup-helm@v4
27+
28+ - name : Run chart-releaser
29+ uses : helm/chart-releaser-action@v1.6.0
30+ with :
31+ charts_dir : tools/pytorchjob-generator
32+ packages_with_index : true
33+ skip_existing : true
34+ env :
35+ CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ name: pytorchjob-generator
33description : An AppWrapper generator for PyTorchJobs
44type : application
55version : 1.0.0
6- appVersion : " workload.codeflare.dev/ v1beta2"
6+ appVersion : " v1beta2"
You can’t perform that action at this time.
0 commit comments