mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-19 07:15:34 -04:00
Merge pull request #3418 from JoeKar/fix/nightly-assets
nightly: Fix asset names with `nightly` as version string
This commit is contained in:
commit
21bb61c5ff
2
.github/workflows/nightly.yaml
vendored
2
.github/workflows/nightly.yaml
vendored
@ -25,7 +25,7 @@ jobs:
|
|||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: tools/cross-compile.sh
|
run: tools/cross-compile.sh nightly
|
||||||
|
|
||||||
- name: Tag
|
- name: Tag
|
||||||
uses: rickstaa/action-create-tag@v1
|
uses: rickstaa/action-create-tag@v1
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
HASH="$(git rev-parse --short HEAD)"
|
VERSION="$1"
|
||||||
|
if [ -z "$VERSION" ]; then
|
||||||
VERSION="$(go run tools/build-version.go)"
|
VERSION="$(go run tools/build-version.go)"
|
||||||
DATE="$(go run tools/build-date.go)"
|
fi
|
||||||
ADDITIONAL_GO_LINKER_FLAGS="$(go run tools/info-plist.go $VERSION)"
|
|
||||||
|
|
||||||
mkdir -p binaries
|
mkdir -p binaries
|
||||||
mkdir -p micro-$VERSION
|
mkdir -p micro-$VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user