We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ff8f5 commit 5ed69bfCopy full SHA for 5ed69bf
1 file changed
.github/workflows/release.yaml
@@ -60,12 +60,9 @@ jobs:
60
type=raw,value=latest
61
- name: Prepare binaries for container image
62
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
63
- env:
64
- VERSION: ${{ github.ref_name }}
65
run: |
66
- VERSION_NO_V="${VERSION#v}"
67
- cp "dist/pipeleek_${VERSION_NO_V}_linux_amd64" pipeleek_amd64
68
- cp "dist/pipeleek_${VERSION_NO_V}_linux_arm64" pipeleek_arm64
+ cp "$(find dist -path 'dist/pipeleek_linux_amd64*/pipeleek' -print -quit)" pipeleek_amd64
+ cp "$(find dist -path 'dist/pipeleek_linux_arm64*/pipeleek' -print -quit)" pipeleek_arm64
69
chmod +x pipeleek_amd64 pipeleek_arm64
70
- name: Build and push container image
71
0 commit comments