mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-12 18:40:28 +00:00
Add version file
This commit is contained in:
parent
54a742d576
commit
e43776f90e
@ -15,7 +15,7 @@ jobs:
|
||||
name: Create artifact upload directory and set variables
|
||||
command: |
|
||||
mkdir /tmp/upload
|
||||
echo 'export CIBUILD=0.1.$(git rev-list HEAD --count | xargs printf "%04d")' >> $BASH_ENV
|
||||
echo 'export CIBUILD=$(cat VERSION).$(git rev-list HEAD --count | xargs printf "%04d")' >> $BASH_ENV
|
||||
echo 'export CIBRANCH=$(git name-rev --name-only HEAD)' >> $BASH_ENV
|
||||
echo '[ "$CIBRANCH" != "master" ] && export CIVERSION=$CIBRANCH-$CIBUILD || export CIVERSION=$CIBUILD' >> $BASH_ENV
|
||||
|
||||
|
@ -14,7 +14,7 @@ PKGBRANCH=$(basename `git name-rev --name-only HEAD`)
|
||||
if [ "$PKGBRANCH" = "master" ]; then PKGNAME=yggdrasil
|
||||
else PKGNAME=yggdrasil-${PKGBRANCH}; fi
|
||||
PKGARCH=${PKGARCH-amd64}
|
||||
PKGVERSION=0.$(git rev-list HEAD --count 2>/dev/null | xargs printf "%04d")
|
||||
PKGVERSION=$(cat VERSION).$(git rev-list HEAD --count 2>/dev/null | xargs printf "%04d")
|
||||
PKGFILE=$PKGNAME-$PKGVERSION-$PKGARCH.deb
|
||||
|
||||
if [ $PKGARCH = "amd64" ]; then GOARCH=amd64 GOOS=linux ./build
|
||||
|
Loading…
Reference in New Issue
Block a user