We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02cb7bf commit 08ff8f5Copy full SHA for 08ff8f5
1 file changed
.github/workflows/release.yaml
@@ -63,8 +63,9 @@ jobs:
63
env:
64
VERSION: ${{ github.ref_name }}
65
run: |
66
- cp "dist/pipeleek_${VERSION}_linux_amd64" pipeleek_amd64
67
- cp "dist/pipeleek_${VERSION}_linux_arm64" pipeleek_arm64
+ VERSION_NO_V="${VERSION#v}"
+ cp "dist/pipeleek_${VERSION_NO_V}_linux_amd64" pipeleek_amd64
68
+ cp "dist/pipeleek_${VERSION_NO_V}_linux_arm64" pipeleek_arm64
69
chmod +x pipeleek_amd64 pipeleek_arm64
70
- name: Build and push container image
71
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
0 commit comments