ci: just build instead of trying to make release

pull/59/head
sammyette 2021-05-20 18:29:32 -04:00
parent c277c67786
commit 571764a87f
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 20 additions and 33 deletions

View File

@ -1,39 +1,26 @@
name: Build
on: on:
push: - push
branches: - pull_request
- master
- dev
pull_request:
branches:
- dev
jobs: jobs:
build: build:
name: Build name: ${{ matrix.build }}
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64 include:
goos: - build: linux-amd64
- linux os: ubuntu-latest
# - windows - build: darwin-amd64
# - darwin os: macOS-latest
goarch:
- "386"
- amd64
exclude:
- goarch: "386"
goos: darwin
steps: steps:
- name: Install readline - name: Checkout sources
run: sudo apt install libreadline-dev uses: actions/checkout@v2
- uses: actions/checkout@v2 - name: Setup Go
- uses: wangyoucao577/go-release-action@v1.17 uses: actions/setup-go@v2
with: - name: Build
github_token: ${{ secrets.GITHUB_TOKEN }} run: make hilbiline
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
extra_files: LICENSE README.md
asset_name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
build_flags: -tags hilbiline
pre_command: go get -d