fix: changed the shebang to suit nix
All checks were successful
/ integration (push) Successful in 12s
All checks were successful
/ integration (push) Successful in 12s
Signed-off-by: silver <silver@skynet.ie>
This commit is contained in:
parent
39501b1a89
commit
80ca8d6bb3
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
@ -42,6 +42,9 @@ ensure_tag() {
|
||||||
}
|
}
|
||||||
|
|
||||||
upload_release() {
|
upload_release() {
|
||||||
|
echo "AAAAAAAAAA"
|
||||||
|
ls $RELEASE_DIR/*
|
||||||
|
echo "BBBBBBBBBB"
|
||||||
local assets=$(ls $RELEASE_DIR/* | sed -e 's/^/-a /')
|
local assets=$(ls $RELEASE_DIR/* | sed -e 's/^/-a /')
|
||||||
local releasetype
|
local releasetype
|
||||||
( $PRERELEASE || echo "${TAG}" | grep -qi '\-rc' ) && export releasetype="--prerelease" && echo "Uploading as Pre-Release"
|
( $PRERELEASE || echo "${TAG}" | grep -qi '\-rc' ) && export releasetype="--prerelease" && echo "Uploading as Pre-Release"
|
||||||
|
|
Loading…
Reference in a new issue