1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 06:25:24 +00:00

Refine scripts (#279)

This commit is contained in:
Loyalsoldier 2020-10-07 20:04:09 +08:00 committed by GitHub
parent ba99e32b2d
commit f0403a67a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
RELBODY="https://github.com/v2fly/v2ray-core/commit/${RELEASE_SHA}"
JSON_DATA=$(echo "{}" | jq -c ".tag_name=\"${RELEASE_TAG}\"")

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This file is accessible as https://install.direct/go.sh
# Original source is located at github.com/v2fly/v2ray-core/release/install-release.sh

6
release/mutilate/removeVSign.sh Normal file → Executable file
View File

@ -1,7 +1,7 @@
#!/bin/bash
#!/usr/bin/env bash
export VROOT=$( dirname "${BASH_SOURCE[0]}" )/../../
export VROOT=$(dirname "${BASH_SOURCE[0]}")/../../
rm $VROOT/infra/control/verify.go
sed -i '/VSign/d' $VROOT/go.mod
sed -i '/VSign/d' $VROOT/go.mod

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
RELEASE_DATA=$(curl --data "version=${SIGN_VERSION}" --data "password=${SIGN_SERVICE_PASSWORD}" -X POST "${SIGN_SERIVCE_URL}" )
echo $RELEASE_DATA
@ -25,4 +25,4 @@ function upload() {
}
curl "https://raw.githubusercontent.com/v2fly/Release/master/v2fly/${SIGN_VERSION}.Release" > Release
upload Release
upload Release

View File

@ -1,7 +1,7 @@
#!/bin/bash
#!/usr/bin/env bash
export SIGN_VERSION=$(cat $GITHUB_EVENT_PATH| jq -r ".release.tag_name")
echo $SIGN_VERSION
$GITHUB_WORKSPACE/release/requestsign.sh
$GITHUB_WORKSPACE/release/requestsign.sh

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
CONST_refs="refs"

View File

@ -33,7 +33,7 @@ build_v2() {
local VERSIONTAG=$(git describe --abbrev=0 --tags)
fi
LDFLAGS="-s -w -buildid= -X v2ray.com/core.codename=${CODENAME} -X v2ray.com/core.build=${BUILDNAME} -X v2ray.com/core.version=${VERSIONTAG}"
LDFLAGS="-s -w -buildid= -X v2ray.codename=${CODENAME} -X v2ray.build=${BUILDNAME} -X v2ray.version=${VERSIONTAG}"
echo ">>> Compile v2ray ..."
env CGO_ENABLED=0 go build -o "$TMP"/v2ray"${EXESUFFIX}" -ldflags "$LDFLAGS" ./main