mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-09-12 13:10:05 +00:00
Delete .github/comp_release.yaml
This commit is contained in:
parent
5183ea76f4
commit
c825787d96
1 changed files with 0 additions and 177 deletions
177
.github/comp_release.yaml
vendored
177
.github/comp_release.yaml
vendored
|
@ -1,177 +0,0 @@
|
||||||
name: Release 4X-UI
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- '**.js'
|
|
||||||
- '**.css'
|
|
||||||
- '**.html'
|
|
||||||
- '**.sh'
|
|
||||||
- '**.go'
|
|
||||||
- 'go.mod'
|
|
||||||
- 'go.sum'
|
|
||||||
- 'x-ui.service'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
platform:
|
|
||||||
- amd64
|
|
||||||
- arm64
|
|
||||||
- armv7
|
|
||||||
- armv6
|
|
||||||
- 386
|
|
||||||
- armv5
|
|
||||||
- s390x
|
|
||||||
- windows-amd64
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version-file: go.mod
|
|
||||||
check-latest: true
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
if [ "${{ matrix.platform }}" == "arm64" ]; then
|
|
||||||
sudo apt install gcc-aarch64-linux-gnu
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv7" ]; then
|
|
||||||
sudo apt install gcc-arm-linux-gnueabihf
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv6" ]; then
|
|
||||||
sudo apt install gcc-arm-linux-gnueabihf
|
|
||||||
elif [ "${{ matrix.platform }}" == "386" ]; then
|
|
||||||
sudo apt install gcc-i686-linux-gnu
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv5" ]; then
|
|
||||||
sudo apt install gcc-arm-linux-gnueabi
|
|
||||||
elif [ "${{ matrix.platform }}" == "s390x" ]; then
|
|
||||||
sudo apt install gcc-s390x-linux-gnu
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Build 4x-ui
|
|
||||||
run: |
|
|
||||||
if [ "${{ matrix.platform }}" == "windows-amd64" ]; then
|
|
||||||
export GOOS=windows
|
|
||||||
export GOARCH=amd64
|
|
||||||
go build -ldflags "-w -s" -o 4xui-release.exe -v main.go
|
|
||||||
mkdir 4x-ui
|
|
||||||
cp 4xui-release.exe 4x-ui/4x-ui.exe
|
|
||||||
cp x-ui.service 4x-ui/
|
|
||||||
cp x-ui.sh 4x-ui/
|
|
||||||
mkdir 4x-ui/bin
|
|
||||||
cd 4x-ui/bin
|
|
||||||
Xray_URL="https://github.com/XTLS/Xray-core/releases/latest/download/"
|
|
||||||
wget -q ${Xray_URL}Xray-windows-64.zip
|
|
||||||
unzip Xray-windows-64.zip
|
|
||||||
rm -f Xray-windows-64.zip
|
|
||||||
mv xray.exe xray-windows-amd64.exe
|
|
||||||
wget -q https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat
|
|
||||||
wget -q https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat
|
|
||||||
wget -q -O geoip_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geoip.dat
|
|
||||||
wget -q -O geosite_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geosite.dat
|
|
||||||
wget -q -O geoip_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geoip.dat
|
|
||||||
wget -q -O geosite_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geosite.dat
|
|
||||||
cd ../..
|
|
||||||
zip -r 4x-ui-windows-amd64.zip 4x-ui
|
|
||||||
else
|
|
||||||
export CGO_ENABLED=1
|
|
||||||
export GOOS=linux
|
|
||||||
export GOARCH=${{ matrix.platform }}
|
|
||||||
if [ "${{ matrix.platform }}" == "arm64" ]; then
|
|
||||||
export GOARCH=arm64
|
|
||||||
export CC=aarch64-linux-gnu-gcc
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv7" ]; then
|
|
||||||
export GOARCH=arm
|
|
||||||
export GOARM=7
|
|
||||||
export CC=arm-linux-gnueabihf-gcc
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv6" ]; then
|
|
||||||
export GOARCH=arm
|
|
||||||
export GOARM=6
|
|
||||||
export CC=arm-linux-gnueabihf-gcc
|
|
||||||
elif [ "${{ matrix.platform }}" == "386" ]; then
|
|
||||||
export GOARCH=386
|
|
||||||
export CC=i686-linux-gnu-gcc
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv5" ]; then
|
|
||||||
export GOARCH=arm
|
|
||||||
export GOARM=5
|
|
||||||
export CC=arm-linux-gnueabi-gcc
|
|
||||||
elif [ "${{ matrix.platform }}" == "s390x" ]; then
|
|
||||||
export GOARCH=s390x
|
|
||||||
export CC=s390x-linux-gnu-gcc
|
|
||||||
fi
|
|
||||||
go build -ldflags "-w -s" -o 4xui-release -v main.go
|
|
||||||
mkdir 4x-ui
|
|
||||||
cp 4xui-release 4x-ui/
|
|
||||||
cp x-ui.service 4x-ui/
|
|
||||||
cp x-ui.sh 4x-ui/
|
|
||||||
mv 4x-ui/4xui-release 4x-ui/4x-ui
|
|
||||||
mkdir 4x-ui/bin
|
|
||||||
cd 4x-ui/bin
|
|
||||||
Xray_URL="https://github.com/XTLS/Xray-core/releases/latest/download/"
|
|
||||||
if [ "${{ matrix.platform }}" == "amd64" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-64.zip
|
|
||||||
unzip Xray-linux-64.zip
|
|
||||||
rm -f Xray-linux-64.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "arm64" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-arm64-v8a.zip
|
|
||||||
unzip Xray-linux-arm64-v8a.zip
|
|
||||||
rm -f Xray-linux-arm64-v8a.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv7" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-arm32-v7a.zip
|
|
||||||
unzip Xray-linux-arm32-v7a.zip
|
|
||||||
rm -f Xray-linux-arm32-v7a.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv6" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-arm32-v6.zip
|
|
||||||
unzip Xray-linux-arm32-v6.zip
|
|
||||||
rm -f Xray-linux-arm32-v6.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "386" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-32.zip
|
|
||||||
unzip Xray-linux-32.zip
|
|
||||||
rm -f Xray-linux-32.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "armv5" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-arm32-v5.zip
|
|
||||||
unzip Xray-linux-arm32-v5.zip
|
|
||||||
rm -f Xray-linux-arm32-v5.zip
|
|
||||||
elif [ "${{ matrix.platform }}" == "s390x" ]; then
|
|
||||||
wget -q ${Xray_URL}Xray-linux-s390x.zip
|
|
||||||
unzip Xray-linux-s390x.zip
|
|
||||||
rm -f Xray-linux-s390x.zip
|
|
||||||
fi
|
|
||||||
mv xray xray-linux-${{ matrix.platform }}
|
|
||||||
wget -q https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat
|
|
||||||
wget -q https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat
|
|
||||||
wget -q -O geoip_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geoip.dat
|
|
||||||
wget -q -O geosite_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geosite.dat
|
|
||||||
wget -q -O geoip_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geoip.dat
|
|
||||||
wget -q -O geosite_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geosite.dat
|
|
||||||
cd ../..
|
|
||||||
tar -zcvf 4x-ui-linux-${{ matrix.platform }}.tar.gz 4x-ui
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Upload files to Artifacts
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: 4x-ui-${{ matrix.platform }}
|
|
||||||
path: ./4x-ui-${{ matrix.platform }}.*
|
|
||||||
|
|
||||||
- name: Upload files to GH release
|
|
||||||
uses: svenstaro/upload-release-action@v2
|
|
||||||
if: github.event_name == 'release' && github.event.action == 'published'
|
|
||||||
with:
|
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
tag: ${{ github.ref }}
|
|
||||||
file: 4x-ui-${{ matrix.platform }}.*
|
|
||||||
asset_name: 4x-ui-${{ matrix.platform }}.*
|
|
||||||
prerelease: true
|
|
Loading…
Reference in a new issue