Compare commits

..

4 Commits
1.0.2 ... 1.0.4

Author SHA1 Message Date
79cce357e2 version: 1.0.4 2025-04-13 23:03:58 -04:00
512fa28b91 failed commit 2025-04-13 23:03:53 -04:00
a36120459b version: 1.0.3 2025-04-13 22:58:52 -04:00
19734a5b0d failed commit 2025-04-13 22:58:47 -04:00
3 changed files with 9 additions and 9 deletions

14
flow
View File

@ -53,7 +53,7 @@ build() {
local version local version
version=$(get-version) || return 1 version=$(get-version) || return 1
local package_dir="./package" local package_dir="./package"
local tarball_name="${GITEA_REPOSITORY}-src-v${version}.tar.gz" local tarball_name="${GITEA_REPOSITORY}.tar.gz"
local tarball_path="${package_dir}/${tarball_name}" local tarball_path="${package_dir}/${tarball_name}"
echo -e "📦 Creating source tarball v$version for ${GITEA_REPOSITORY} in $package_dir..." echo -e "📦 Creating source tarball v$version for ${GITEA_REPOSITORY} in $package_dir..."
@ -113,14 +113,14 @@ jspg-usage() {
jspg-flow() { jspg-flow() {
case "$1" in case "$1" in
prepare) env; base prepare; cargo-prepare; pgrx-prepare; return 0;; prepare) base prepare; cargo-prepare; pgrx-prepare; return 0;;
build) env; build; return 0;; build) build; return 0;;
install) env; base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;; install) base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;;
reinstall) env; base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;; reinstall) base prepare; cargo-prepare; pgrx-prepare; install "$@"; return 0;;
test) env; test; return 0;; test) test; return 0;;
package) env; package; return 0;; package) env; package; return 0;;
release) env; release; return 0;; release) env; release; return 0;;
clean) env; clean; return 0;; clean) clean; return 0;;
*) return 1 ;; *) return 1 ;;
esac esac
} }

2
flows

Submodule flows updated: 2487aa6a25...6eab4783f3

View File

@ -1 +1 @@
1.0.2 1.0.4