1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-26 11:44:22 -04:00

really fix pie build

This commit is contained in:
Shelikhoo 2025-01-19 17:39:08 +00:00
parent f5938647a0
commit d084fc2e55
No known key found for this signature in database
GPG Key ID: 4C9764E9FE80A3DC
2 changed files with 3 additions and 1 deletions

View File

@ -127,7 +127,7 @@ jobs:
- name: Show workflow information
id: get_filename
run: |
export _NAME=$(jq ".[\"$GOOS-$GOARCH$GOARM\"].friendlyName" -r < release/friendly-filenames.json)
export _NAME=$(jq ".[\"$GOOS-$GOARCH$GOARM$PIE_ENABLED\"].friendlyName" -r < release/friendly-filenames.json)
echo "GOOS: $GOOS, GOARCH: $GOARCH, GOARM: $GOARM, RELEASE_NAME: $_NAME"
echo "ASSET_NAME=$_NAME" >> $GITHUB_OUTPUT
echo "ASSET_NAME=$_NAME" >> $GITHUB_ENV

View File

@ -9,8 +9,10 @@
"freebsd-arm64": { "friendlyName": "freebsd-arm64-v8a" },
"linux-386": { "friendlyName": "linux-32" },
"linux-amd64": { "friendlyName": "linux-64" },
"linux-amd64pie": { "friendlyName": "linux-64-pie" },
"linux-arm5": { "friendlyName": "linux-arm32-v5" },
"linux-arm64": { "friendlyName": "linux-arm64-v8a" },
"linux-arm64pie": { "friendlyName": "linux-arm64-v8a-pie" },
"linux-arm6": { "friendlyName": "linux-arm32-v6" },
"linux-arm7": { "friendlyName": "linux-arm32-v7a" },
"linux-mips64le": { "friendlyName": "linux-mips64le" },