Skip to content

Commit e178911

Browse files
authored
Release 0.1.1 (#29)
* update Chart.yaml * run CI on PRs
1 parent 677e111 commit e178911

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.github/workflows/ci-github-cms.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- "**"
7+
pull_request:
8+
branches:
9+
- "master"
710

811
jobs:
912
deploy-at-github:

.github/workflows/helm-docs.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- "**"
7+
pull_request:
8+
branches:
9+
- "master"
710

811
jobs:
912
helm-docs:
@@ -13,6 +16,9 @@ jobs:
1316
# Checkout the repository
1417
- name: Checkout code
1518
uses: actions/checkout@v3
19+
with:
20+
fetch-depth: 0
21+
ref: ${{ github.head_ref || github.ref }}
1622

1723
# Install helm-docs
1824
- name: Set up Go
@@ -51,4 +57,4 @@ jobs:
5157
git commit -m "Update helm docs" || echo "No changes to commit"
5258
5359
# Push changes back to the same branch
54-
git push origin HEAD
60+
git push origin HEAD:${{ github.head_ref || github.ref }}

.github/workflows/helm-lint.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- "**"
7+
pull_request:
8+
branches:
9+
- "master"
710

811
jobs:
912
helm-lint:
@@ -12,6 +15,9 @@ jobs:
1215
steps:
1316
- name: Checkout Code
1417
uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
20+
ref: ${{ github.head_ref || github.ref }}
1521

1622
- name: Set up Helm
1723
uses: azure/setup-helm@v3
@@ -45,7 +51,7 @@ jobs:
4551
git commit -m "Update JSON schema" || echo "No changes to commit"
4652
4753
# Push changes back to the same branch
48-
git push origin HEAD
54+
git push origin HEAD:${{ github.head_ref || github.ref }}
4955
5056
- name: Lint values.yaml files in values/ directory
5157
run: |

helm/supersonic/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: supersonic
33
description: Server infrastructure for inference-as-a-service in large scientific experiments.
44
icon: https://github.com/fastmachinelearning/SuperSONIC/blob/master/docs/img/SuperSONIC_small_512.png?raw=true
5-
version: 0.1.0
5+
version: 0.1.1
66
type: application
77
home: https://fastmachinelearning.org/SuperSONIC/
88
annotations:

0 commit comments

Comments
 (0)