This is an automated email from the ASF dual-hosted git repository. klesh pushed a commit to branch revert-201-fix/actions in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git
commit 90674afc889c60b8413b8b80d4c583370df80dd2 Author: Klesh Wong <[email protected]> AuthorDate: Wed Nov 15 10:21:30 2023 +0800 Revert "Replace submodules by GitHub actions (#201)" This reverts commit 6183a2530090e117ec52f1404a2312aca3fa55c6. --- .github/actions/chart-releaser-action | 1 + .github/workflows/release.yaml | 2 +- .gitmodules | 7 +++++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/chart-releaser-action b/.github/actions/chart-releaser-action new file mode 160000 index 0000000..be16258 --- /dev/null +++ b/.github/actions/chart-releaser-action @@ -0,0 +1 @@ +Subproject commit be16258da8010256c6e82849661221415f031968 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e757f0e..4554ff4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: helm repo add grafana https://grafana.github.io/helm-charts - name: Run chart-releaser - uses: helm/[email protected] + uses: ./.github/actions/chart-releaser-action with: charts_dir: charts env: diff --git a/.gitmodules b/.gitmodules index e69de29..272d983 100644 --- a/.gitmodules +++ b/.gitmodules @@ -0,0 +1,7 @@ +[submodule ".github/actions/setup-kind"] + path = .github/actions/setup-kind + url = https://github.com/engineerd/setup-kind.git + branch = v0.5.0 +[submodule ".github/actions/chart-releaser-action"] + path = .github/actions/chart-releaser-action + url = [email protected]:helm/chart-releaser-action.git
