We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37b1f4 commit 9119500Copy full SHA for 9119500
.github/workflows/_release.yaml
@@ -19,11 +19,15 @@ jobs:
19
with:
20
merge-multiple: true
21
22
+ - name: Set SCHEMA_FILE env var
23
+ run: |
24
+ echo "SCHEMA_FILE=${GITHUB_REF_NAME%@*}.schema.json" >> $GITHUB_ENV
25
+
26
- name: Create GitHub release with schema for the tagged helm chart
27
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
28
29
files: |
- ${GITHUB_REF_NAME%@*}.schema.json
30
+ ${{ env.SCHEMA_FILE }}
31
generate_release_notes: true
32
33
- 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