We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b37b70b commit edf9c8fCopy full SHA for edf9c8f
.github/workflows/lint-test.yaml
@@ -50,3 +50,17 @@ jobs:
50
51
- name: Run chart-testing (install)
52
run: ct install --config ct.yaml
53
+
54
+ - id: get-version
55
+ name: Memorize pre-release version
56
+ run: |
57
+ echo version=$(helm show chart ./charts/flagsmith | grep -oP '^version: \K.*')-a$(date +"%Y%m%d%H%M%S") >> $GITHUB_OUTPUT
58
59
+ - name: Package the pre-release chart
60
+ run: helm package ./charts/flagsmith --version ${{ steps.get-version.outputs.version }} --destination out
61
62
+ - name: Save the pre-release chart archive
63
+ uses: actions/upload-artifact@v3
64
+ with:
65
+ name: flagsmith-${{ steps.get-version.outputs.version }}.tgz
66
+ path: out/flagsmith-${{ steps.get-version.outputs.version }}.tgz
0 commit comments