mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
release: archivebox 0.9.33rc77
This commit is contained in:
parent
344ca461c3
commit
211c3e234d
@ -83,16 +83,26 @@ check_platforms || (recreate_builder && check_platforms) || exit 1
|
||||
# docker login ghcr.io --username=pirate
|
||||
|
||||
echo "[^] Uploading docker image"
|
||||
mkdir -p "$HOME/.cache/docker/archivebox"
|
||||
DOCKER_CACHE_DIR="$HOME/.cache/docker/archivebox"
|
||||
DOCKER_CACHE_OUT="$(mktemp -d "$HOME/.cache/docker/archivebox.new.XXXXXX")"
|
||||
mkdir -p "$DOCKER_CACHE_DIR"
|
||||
cleanup_docker_cache_out() {
|
||||
rm -rf "$DOCKER_CACHE_OUT"
|
||||
}
|
||||
trap cleanup_docker_cache_out EXIT
|
||||
|
||||
# https://docs.docker.com/build/cache/backends/
|
||||
# shellcheck disable=SC2068
|
||||
docker buildx build \
|
||||
--platform "$SELECTED_PLATFORMS" \
|
||||
--cache-from type=local,src="$HOME/.cache/docker/archivebox" \
|
||||
--cache-to type=local,compression=zstd,mode=min,oci-mediatypes=true,dest="$HOME/.cache/docker/archivebox" \
|
||||
--cache-from type=local,src="$DOCKER_CACHE_DIR" \
|
||||
--cache-to type=local,compression=zstd,mode=min,oci-mediatypes=true,dest="$DOCKER_CACHE_OUT" \
|
||||
--push . ${FULL_TAG_NAMES[@]}
|
||||
|
||||
rm -rf "$DOCKER_CACHE_DIR"
|
||||
mv "$DOCKER_CACHE_OUT" "$DOCKER_CACHE_DIR"
|
||||
trap - EXIT
|
||||
|
||||
echo "[^] Verifying pushed Docker manifests include: $SELECTED_PLATFORMS"
|
||||
for TAG_NAME in "${TAG_NAMES[@]}"; do
|
||||
[[ "$TAG_NAME" == "" ]] && continue
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "archivebox",
|
||||
"version": "0.9.33rc76",
|
||||
"version": "0.9.33rc77",
|
||||
"repository": "github:ArchiveBox/ArchiveBox",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "archivebox"
|
||||
version = "0.9.33rc76"
|
||||
version = "0.9.33rc77"
|
||||
requires-python = ">=3.13"
|
||||
description = "Self-hosted internet archiving solution."
|
||||
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]
|
||||
@ -79,9 +79,9 @@ dependencies = [
|
||||
### Extractor dependencies (optional binaries detected at runtime via shutil.which)
|
||||
### Binary/Package Management
|
||||
"abxbus==2.5.8", # EventBus API
|
||||
"abxpkg>=1.11.108", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
|
||||
"abx-plugins>=1.11.111", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
|
||||
"abx-dl>=1.11.111", # shared ArchiveBox downloader package with blocking install preflight
|
||||
"abxpkg>=1.11.109", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
|
||||
"abx-plugins>=1.11.112", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
|
||||
"abx-dl>=1.11.112", # shared ArchiveBox downloader package with blocking install preflight
|
||||
### UUID7 backport for Python <3.14
|
||||
"uuid7>=0.1.0; python_version < '3.14'", # provides the uuid_extensions module on Python 3.13
|
||||
]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user