mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
hysteria 2 prototype first public release
This commit is contained in:
parent
c0ab06e961
commit
9f54aade8f
139 changed files with 5146 additions and 11657 deletions
65
.github/workflows/release.yml
vendored
65
.github/workflows/release.yml
vendored
|
@ -1,65 +0,0 @@
|
|||
name: Build and release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
name: Build and release
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
||||
|
||||
steps:
|
||||
|
||||
- name: Check out
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: "1.20"
|
||||
|
||||
- name: Run build script
|
||||
env:
|
||||
HY_APP_PLATFORMS: 'darwin/amd64,darwin/amd64-avx,darwin/arm64,windows/amd64,windows/amd64-avx,windows/386,windows/arm64,linux/amd64,linux/amd64-avx,linux/386,linux/arm,linux/armv5,linux/arm64,linux/s390x,linux/mipsle,linux/mipsle-sf,freebsd/amd64,freebsd/amd64-avx,freebsd/386,freebsd/arm,freebsd/arm64'
|
||||
run: ./build.sh
|
||||
shell: bash
|
||||
|
||||
- name: Generate hashes
|
||||
run: |
|
||||
cd build
|
||||
for f in $(find . -type f); do
|
||||
sha256sum $f | sudo tee -a hashes.txt
|
||||
done
|
||||
|
||||
- name: Upload
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
files: |
|
||||
./build/hysteria-darwin-amd64
|
||||
./build/hysteria-darwin-amd64-avx
|
||||
./build/hysteria-darwin-arm64
|
||||
./build/hysteria-windows-amd64.exe
|
||||
./build/hysteria-windows-amd64-avx.exe
|
||||
./build/hysteria-windows-386.exe
|
||||
./build/hysteria-windows-arm64.exe
|
||||
./build/hysteria-linux-amd64
|
||||
./build/hysteria-linux-amd64-avx
|
||||
./build/hysteria-linux-386
|
||||
./build/hysteria-linux-arm
|
||||
./build/hysteria-linux-armv5
|
||||
./build/hysteria-linux-arm64
|
||||
./build/hysteria-linux-s390x
|
||||
./build/hysteria-linux-mipsle
|
||||
./build/hysteria-linux-mipsle-sf
|
||||
./build/hysteria-freebsd-amd64
|
||||
./build/hysteria-freebsd-amd64-avx
|
||||
./build/hysteria-freebsd-386
|
||||
./build/hysteria-freebsd-arm
|
||||
./build/hysteria-freebsd-arm64
|
||||
./build/hashes.txt
|
Loading…
Add table
Add a link
Reference in a new issue