dont build docker container twice during release
Some checks are pending
CodeQL / Analyze (python) (push) Waiting to run
Build Debian package / build (push) Waiting to run
Build Docker image / buildx (push) Waiting to run
Build Homebrew package / build (push) Waiting to run
Build GitHub Pages website / build (push) Waiting to run
Build GitHub Pages website / deploy (push) Blocked by required conditions
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Run tests / python_tests (ubuntu-22.04, 3.11) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run

This commit is contained in:
Nick Sweeting 2024-10-03 03:12:18 -07:00
parent 9728d81fee
commit 29fc14dff4
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ import os
import sys import sys
import inspect import inspect
from pathlib import Path from pathlib import Path
from typing import List, Dict, Optional, ClassVar from typing import List, Dict, Optional
from pydantic import InstanceOf, Field, model_validator from pydantic import InstanceOf, Field, model_validator

@ -1 +1 @@
Subproject commit 4f31b355fbf319a54b38953795b17b1b04db4348 Subproject commit 0f610c2ab688d81711acec73c73d4286ba14d033

View file

@ -26,8 +26,8 @@ SELECTED_PLATFORMS="${2:-$SUPPORTED_PLATFORMS}"
# docker login --username=nikisweeting # docker login --username=nikisweeting
# docker login ghcr.io --username=pirate # docker login ghcr.io --username=pirate
echo "[^] Building docker image" # echo "[^] Building docker image"
./bin/build_docker.sh "$TAG_NAME" "$SELECTED_PLATFORMS" # ./bin/build_docker.sh "$TAG_NAME" "$SELECTED_PLATFORMS"
echo "[^] Uploading docker image" echo "[^] Uploading docker image"
docker buildx build --platform "$SELECTED_PLATFORMS" --push . \ docker buildx build --platform "$SELECTED_PLATFORMS" --push . \