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 b0d38d2 commit f63904bCopy full SHA for f63904b
smoke-test/action.yml
@@ -66,13 +66,18 @@ runs:
66
id: update-chart-yaml
67
uses: mikefarah/yq@master
68
with:
69
- cmd: yq '.version = "${APP_VERSION}"' ${CHART_YAML}
+ cmd: yq -i '.version = "${{ env.APP_VERSION }}"' ${CHART_YAML}
70
- name: Update Chart Version
71
id: update-chart-version
72
shell: bash
73
run: |
74
tarball=$(find ${YAML_DIR} -name "${CHART_NAME}*.tgz")
75
- tar -uzvf ${tarball} ${CHART_YAML}
+ gunzip ${tarball}
76
+ tar -uvf ${tarball%tgz}.tar ${CHART_YAML}
77
+ gzip ${tarball%tgz}.tar
78
+ mv ${tarball%tgz}.tar.gz ${tarball}
79
+ env:
80
+ YAML_DIR: ${{ inputs.yaml-dir }}
81
- name: 'Create Release'
82
id: 'create-release'
83
uses: replicatedhq/compatibility-actions/create-release@v0
0 commit comments