mirror of https://github.com/Hilbis/Hilbish
chore(ci): use spaces instead of tabs
parent
d3989e09ed
commit
92f9e51a15
|
@ -8,31 +8,31 @@ on:
|
||||||
- dev
|
- dev
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64
|
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64
|
||||||
- goos: linux
|
- goos: linux
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
# - windows
|
# - windows
|
||||||
# - darwin
|
# - darwin
|
||||||
goarch:
|
goarch:
|
||||||
- amd64
|
- amd64
|
||||||
exclude:
|
exclude:
|
||||||
- goarch: "386"
|
- goarch: "386"
|
||||||
goos: darwin
|
goos: darwin
|
||||||
steps:
|
steps:
|
||||||
- name: Install readline
|
- name: Install readline
|
||||||
run: sudo apt install libreadline-dev
|
run: sudo apt install libreadline-dev
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: wangyoucao577/go-release-action@v1.17
|
- uses: wangyoucao577/go-release-action@v1.17
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
goos: ${{ matrix.goos }}
|
goos: ${{ matrix.goos }}
|
||||||
goarch: ${{ matrix.goarch }}
|
goarch: ${{ matrix.goarch }}
|
||||||
extra_files: LICENSE README.md
|
extra_files: LICENSE README.md
|
||||||
asset_name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
|
asset_name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue