remove extra files from repo root and move package.json into etc

This commit is contained in:
Nick Sweeting 2024-10-05 03:51:47 -07:00
parent 00a91e09c6
commit db10a2142e
No known key found for this signature in database
17 changed files with 44 additions and 6370 deletions

View file

@ -15,7 +15,7 @@ cd "$REPO_DIR"
declare -a TAG_NAMES="$*"
BRANCH_NAME="${1:-$(git rev-parse --abbrev-ref HEAD)}"
VERSION="$(jq -r '.version' < "$REPO_DIR/package.json")"
VERSION="$(grep '^version = ' "${REPO_DIR}/pyproject.toml" | awk -F'"' '{print $2}')"
GIT_SHA=sha-"$(git rev-parse --short HEAD)"
SELECTED_PLATFORMS="linux/amd64,linux/arm64"