We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42aedbd commit 3009e74Copy full SHA for 3009e74
1 file changed
.github/workflows/build-web.yaml
@@ -78,8 +78,8 @@ jobs:
78
VERSION=$(curl -fs https://api.github.com/repos/replicatedhq/replicated/releases/latest \
79
| grep '"tag_name"' | cut -d'"' -f4)
80
curl -fsSL "https://github.com/replicatedhq/replicated/releases/download/${VERSION}/replicated_${VERSION#v}_linux_amd64.tar.gz" \
81
- | tar xz replicated
82
- sudo mv replicated /usr/local/bin/
+ | tar xz -C /tmp replicated
+ sudo mv /tmp/replicated /usr/local/bin/
83
84
- name: Package release artifacts
85
run: ./replicated/prepare.sh
0 commit comments