mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 04:57:40 +03:00
59 lines
No EOL
1.4 KiB
YAML
59 lines
No EOL
1.4 KiB
YAML
name: Build and release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build and release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.14
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.14
|
|
id: go
|
|
|
|
- name: Check out
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get dependencies
|
|
run: |
|
|
go get -v -t -d ./...
|
|
if [ -f Gopkg.toml ]; then
|
|
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
dep ensure
|
|
fi
|
|
|
|
- name: Get tag
|
|
uses: olegtarasov/get-tag@v2
|
|
id: tagName
|
|
|
|
- name: Get time
|
|
uses: gerred/actions/current-time@master
|
|
id: current-time
|
|
|
|
- name: Build
|
|
uses: izumin5210/action-go-crossbuild@v1.0.0
|
|
env:
|
|
TIME: "${{ steps.current-time.outputs.time }}"
|
|
with:
|
|
name: hysteria
|
|
arch: amd64
|
|
dest: ./dist/
|
|
ldflags: -w -s -X main.appVersion=${{ env.GIT_TAG_NAME }} -X main.appCommit=${{ env.GITHUB_SHA }} -X main.appDate=${{ env.TIME }}
|
|
os: windows,linux,darwin
|
|
package: ./cmd
|
|
|
|
- name: Upload
|
|
uses: meeDamian/github-release@2.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
files: >
|
|
./dist/hysteria_windows_amd64.zip
|
|
./dist/hysteria_linux_amd64.tar.gz
|
|
./dist/hysteria_darwin_amd64.zip |