Skip to content

Commit

Permalink
Release 0.1.1 (#29)
Browse files Browse the repository at this point in the history
* update Chart.yaml

* run CI on PRs
  • Loading branch information
kondratyevd authored Jan 27, 2025
1 parent 677e111 commit e178911
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-github-cms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- "**"
pull_request:
branches:
- "master"

jobs:
deploy-at-github:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/helm-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- "**"
pull_request:
branches:
- "master"

jobs:
helm-docs:
Expand All @@ -13,6 +16,9 @@ jobs:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref || github.ref }}

# Install helm-docs
- name: Set up Go
Expand Down Expand Up @@ -51,4 +57,4 @@ jobs:
git commit -m "Update helm docs" || echo "No changes to commit"
# Push changes back to the same branch
git push origin HEAD
git push origin HEAD:${{ github.head_ref || github.ref }}
8 changes: 7 additions & 1 deletion .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- "**"
pull_request:
branches:
- "master"

jobs:
helm-lint:
Expand All @@ -12,6 +15,9 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref || github.ref }}

- name: Set up Helm
uses: azure/setup-helm@v3
Expand Down Expand Up @@ -45,7 +51,7 @@ jobs:
git commit -m "Update JSON schema" || echo "No changes to commit"
# Push changes back to the same branch
git push origin HEAD
git push origin HEAD:${{ github.head_ref || github.ref }}
- name: Lint values.yaml files in values/ directory
run: |
Expand Down
2 changes: 1 addition & 1 deletion helm/supersonic/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: supersonic
description: Server infrastructure for inference-as-a-service in large scientific experiments.
icon: https://github.com/fastmachinelearning/SuperSONIC/blob/master/docs/img/SuperSONIC_small_512.png?raw=true
version: 0.1.0
version: 0.1.1
type: application
home: https://fastmachinelearning.org/SuperSONIC/
annotations:
Expand Down

0 comments on commit e178911

Please sign in to comment.