Skip to content

Commit

Permalink
Debugs repackaging
Browse files Browse the repository at this point in the history
  • Loading branch information
crdant committed Jul 2, 2023
1 parent bf93679 commit 4963477
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions smoke-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ runs:
run: |
# update the chart version to match the Replicated app version
tarball=$(find ${YAML_DIR} -name "${CHART_NAME}*.tgz")
tar -xvf ${tarball%tgz} -C /tmp/repack
helm package --version "${{ env.APP_VERSION }}" /tmp/repack
mv /tmp/repack/${{ inputs.helm-chart-name }}-${{env.APP_VERSION }}.tgz $(dirname ${tarball })
mkdir -p /tmp/repack
tar -xf ${tarball} -C /tmp/repack
helm package --version "${{ env.APP_VERSION }}" /tmp/repack/${CHART_NAME}*
mv ${{ inputs.helm-chart-name }}-${{env.APP_VERSION }}.tgz $(dirname ${tarball})
rm ${tarball}
env:
YAML_DIR: ${{ inputs.yaml-dir }}
Expand Down

0 comments on commit 4963477

Please sign in to comment.