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 ef37319Copy full SHA for ef37319
.github/workflows/lint-test.yaml
@@ -50,3 +50,15 @@ jobs:
50
51
- name: Run chart-testing (install)
52
run: ct install --config ct.yaml
53
+
54
+ - id: get-version
55
+ run: |
56
+ echo version=$(helm show chart ./charts/flagsmith | grep -oP '^version: \K.*')-a$(date +"%Y%m%d%H%M%S") >> $GITHUB_OUTPUT
57
58
+ - run: helm package ./charts/flagsmith --version ${{ steps.get-version.outputs.version }} --destination out
59
60
+ - name: Save the chart archive
61
+ uses: actions/upload-artifact@v3
62
+ with:
63
+ name: flagsmith-${{ steps.get-version.outputs.version }}.tgz
64
+ path: out/flagsmith-${{ steps.get-version.outputs.version }}.tgz
0 commit comments