Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Jul 16, 2024
1 parent 76209f9 commit fb81fba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/push-oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

jobs:
helm-push:
helm-push-to-OCI:
permissions:
packages: write
contents: write
Expand All @@ -21,8 +21,8 @@ jobs:
feth-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Set up Helm
uses: azure/setup-helm@v4
with:
Expand All @@ -40,13 +40,9 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get release version
id: release-version
run: |
echo "tag=v$(yq .version charts/cryostat/Chart.yaml)" >> $GITHUB_OUTPUT
- name: Push Charts to GHCR
run: |
for pkg in .cr-release-packages/*; do
for pkg in .cr-release-packages/*.tgz; do
if [ -z "${pkg:-}" ]; then
break
fi
Expand Down
1 change: 1 addition & 0 deletions charts/cryostat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,4 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
| `pvc.selector` | Selector for the persistentVolumeClaim. See: [Selector](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) | `{}` |
| `pvc.storageClassName` | The name of the StorageClass for the persistentVolumeClaim. See: [Class](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) | `undefined` |

*changing chart*

0 comments on commit fb81fba

Please sign in to comment.