We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37b1f4 commit 815d501Copy full SHA for 815d501
.github/workflows/_release.yaml
@@ -19,11 +19,14 @@ jobs:
19
with:
20
merge-multiple: true
21
22
+ run: |
23
+ echo "SCHEMA_FILE=${GITHUB_REF_NAME%@*}.schema.json" >> $GITHUB_ENV
24
+
25
- name: Create GitHub release with schema for the tagged helm chart
26
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
27
28
files: |
- ${GITHUB_REF_NAME%@*}.schema.json
29
+ ${{ env.SCHEMA_FILE }}
30
generate_release_notes: true
31
32
- name: Push tagged helm chart to registry
package-helm-charts.sh
@@ -2,7 +2,7 @@
2
3
set -xeuo pipefail
4
5
-FULL_REF=$(git describe)
+FULL_REF=$(git describe --tags)
6
VERSION="${FULL_REF#*@}"
7
8
mkdir -p charts
0 commit comments