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 c86a5b4 commit eefb6e8Copy full SHA for eefb6e8
.github/workflows/release.yaml
@@ -152,6 +152,7 @@ jobs:
152
153
for name in *; do
154
cd "${{ github.workspace }}/artifacts/${name}/release"
155
+ chmod +x ./*
156
tar -czvf ./${name}.tar.gz ./*
157
gh release upload $GH_TAG ${name}.tar.gz
158
done
install.sh
@@ -60,9 +60,13 @@ mkdir -p $OUT_DIR
60
61
if [ -z "${URL##*.tar.gz}" ]; then
62
curl -s -L --url $URL | tar -xzf - -C $OUT_DIR
63
+ chmod +x $OUT_DIR/http-server*
64
fi
65
66
echo "export PATH=\"${OUT_DIR}:\$PATH\""
67
+>&2 echo "======="
68
+>&2 echo "Add this to \$PATH"
69
+>&2 echo " export PATH=\"${OUT_DIR}:\$PATH\""
70
71
if [ "$GITHUB_PATH" != "" ]; then
72
echo "${OUT_DIR}" >> $GITHUB_PATH
0 commit comments