first commit

这个提交包含在:
2024-05-11 11:48:18 +08:00 未验证
当前提交 ab160d2e34
修改 2 个文件,包含 36 行新增0 行删除
+31
查看文件
@@ -0,0 +1,31 @@
name: Release Charts
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Add dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+5
查看文件
@@ -0,0 +1,5 @@
helm charts
helm repo add devcm https://devcm-repo.github.io/helm-charts
pgedge