mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Add missing quotes to PLATFORMS in build_and_push.yml
This commit is contained in:
parent
3806ba9a14
commit
284884fc1d
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build_and_push.yml
vendored
4
.github/workflows/build_and_push.yml
vendored
|
|
@ -72,7 +72,7 @@ jobs:
|
|||
TAGS="freikin/dawarich:${VERSION}"
|
||||
|
||||
# Set platforms based on version type and release type
|
||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7
|
||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7"
|
||||
|
||||
# Check if this is a patch version (x.y.z where z > 0)
|
||||
if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[1-9][0-9]*$ ]]; then
|
||||
|
|
@ -80,7 +80,7 @@ jobs:
|
|||
PLATFORMS="linux/amd64"
|
||||
elif [[ $VERSION =~ ^[0-9]+\.[0-9]+\.0$ ]]; then
|
||||
echo "Detected minor version ($VERSION) - building for all platforms"
|
||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7
|
||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7"
|
||||
else
|
||||
echo "Version format not recognized or non-semver - using AMD64 only for safety"
|
||||
PLATFORMS="linux/amd64"
|
||||
|
|
|
|||
Loading…
Reference in a new issue