mirror of
https://github.com/zu1k/nali.git
synced 2025-01-23 21:59:02 +08:00
f9c964fbb0
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.1 to v2.3.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.1...2036a08e25fa78bbd946711a407b529a0a1204bf) Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
name: Go
|
|
on: [push, pull_request]
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.14.x
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2.3.2
|
|
|
|
- name: Cache go module
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Get dependencies and run test
|
|
run: |
|
|
go test ./...
|
|
|
|
- name: Build
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
NAME: nali
|
|
BINDIR: bin
|
|
run: make -j releases
|
|
|
|
- name: Upload Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
files: bin/*
|
|
draft: true
|
|
prerelease: true
|
|
|
|
- uses: actions/upload-artifact@v2.1.3
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
name: build
|
|
path: bin
|