Skip to content

Commit 9fbe331

Browse files
authored
fix: Fetch get-higress.sh from standalone repo (#1945)
1 parent dd50ac0 commit 9fbe331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-standalone-to-oss.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
name: Prepare Standalone Package
2121
run: |
2222
mkdir ./artifact
23-
cp ./tools/get-higress.sh ./artifact
2423
LOCAL_RELEASE_URL="https://github.com/higress-group/higress-standalone/releases"
2524
VERSION=$(curl -Ls $LOCAL_RELEASE_URL | grep 'href="/higress-group/higress-standalone/releases/tag/v[0-9]*.[0-9]*.[0-9]*\"' | sed -E 's/.*\/higress-group\/higress-standalone\/releases\/tag\/(v[0-9\.]+)".*/\1/g' | head -1)
2625
DOWNLOAD_URL="https://github.com/higress-group/higress-standalone/archive/refs/tags/${VERSION}.tar.gz"
2726
curl -SsL "$DOWNLOAD_URL" -o "./artifact/higress-${VERSION}.tar.gz"
27+
curl -SsL "https://raw.githubusercontent.com/higress-group/higress-standalone/refs/heads/main/src/get-higress.sh" -o "./artifact/get-higress.sh"
2828
echo -n "$VERSION" > ./artifact/VERSION
2929
echo "Version=$VERSION"
3030
# Step 3

0 commit comments

Comments
 (0)