mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-07 23:32:27 +08:00
11 lines
342 B
Bash
Executable File
11 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=`git describe --tags`
|
|
tar zcvf eiblog-$VERSION-linux-amd64.tar.gz conf static views eiblog
|
|
|
|
GOOS=windows GOARCH=amd64 go build && \
|
|
tar zcvf eiblog-$VERSION-windows-amd64.tar.gz conf static views eiblog
|
|
|
|
GOOS=darwin GOARCH=amd64 go build && \
|
|
tar zcvf eiblog-$VERSION-darwin-amd64.tar.gz conf static views eiblog
|