Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
a56f39c108 | |||
506d38d247 | |||
fd9b079d70 | |||
dcf8e5943b | |||
511164546d | |||
55591c23f6 |
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: '1.13.0'
|
||||
|
||||
- name: Build
|
||||
run: make -j $(nproc) compile
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: build release
|
||||
name: release
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -10,6 +10,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Get the version
|
||||
id: get_version
|
||||
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
|
||||
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
@ -19,7 +23,7 @@ jobs:
|
||||
go-version: '1.13.0'
|
||||
|
||||
- name: Build
|
||||
run: make -j $(nproc) compile VERSION=${{ github.ref }}
|
||||
run: make -j $(nproc) compile VERSION=${{ steps.get_version.outputs.VERSION }}
|
||||
|
||||
- name: create release
|
||||
id: create_release
|
||||
@ -27,8 +31,8 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
tag_name: ${{ steps.get_version.outputs.VERSION }}
|
||||
release_name: Release ${{ steps.get_version.outputs.VERSION }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
9
Makefile
9
Makefile
@ -17,15 +17,16 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
NAME = range-gen
|
||||
NAME = $(shell basename $(shell readlink -e .))
|
||||
VERSION = dev_$(shell date +%F_%T)
|
||||
GOCMD = go
|
||||
LDFLAGS := "$(LDFLAGS) -X 'main.Version=$(VERSION)'"
|
||||
GOBUILD = $(GOCMD) build -ldflags=$(LDFLAGS)
|
||||
SRCMAIN = ./cmd/$(NAME)
|
||||
SRCDOC = ./doc
|
||||
BINDIR = bin
|
||||
BIN = $(BINDIR)/$(NAME)
|
||||
README = ./doc/README
|
||||
README = $(SRCDOC)/README
|
||||
LICENSE = LICENSE
|
||||
PREFIX = /usr
|
||||
|
||||
@ -41,8 +42,8 @@ build: prep
|
||||
$(GOBUILD) -o $(BIN) $(SRCMAIN)
|
||||
|
||||
doc: check-build
|
||||
test -d ./doc || mkdir ./doc
|
||||
$(BIN) --help > ./doc/README
|
||||
test -d $(SRCDOC) || mkdir $(SRCDOC)
|
||||
$(BIN) --help > $(README)
|
||||
|
||||
check-build:
|
||||
test -e $(BIN)
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Range-Gen
|
||||
|
||||
[](https://github.com/GenZmeY/range-gen/actions)
|
||||
[](https://github.com/GenZmeY/range-gen/actions)
|
||||
[](https://golang.org)
|
||||
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
|
||||
[](https://github.com/GenZmeY/range-gen/releases)
|
||||
|
Loading…
x
Reference in New Issue
Block a user