Skip to content

Commit

Permalink
moved quickstart manifest attach workflow to main release workflow (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
amorey authored Oct 26, 2024
1 parent b692bd7 commit 7cdef48
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 31 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/release-post.yaml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,28 @@ jobs:
fi
helm push "${pkg}" "oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/helm-charts"
done
attach-manifests:
needs: release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v3

- name: Create quickstart manifests
run: |
helm template kubetail charts/kubetail --values hack/kubetail-values-clusterauth.yaml > kubetail-clusterauth.yaml
helm template kubetail charts/kubetail --values hack/kubetail-values-tokenauth.yaml > kubetail-tokenauth.yaml
- name: Attach quickstart manifests to gh release
uses: softprops/action-gh-release@v2
with:
tag: latest
files: |
kubetail-clusterauth.yaml
kubetail-tokenauth.yaml
2 changes: 1 addition & 1 deletion charts/kubetail/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
- private
- realtime
type: application
version: 0.8.2-rc3
version: 0.8.2-rc4
appVersion: "0.8.1"
home: https://github.com/kubetail-org/kubetail
maintainers:
Expand Down

0 comments on commit 7cdef48

Please sign in to comment.