chore(ci): use spaces instead of tabs

pull/59/head
sammyette 2021-05-20 18:05:56 -04:00
parent d3989e09ed
commit 92f9e51a15
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 27 additions and 27 deletions

View File

@ -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 }}