mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Remove arm/v6 from build platforms
This commit is contained in:
parent
045655fa73
commit
3806ba9a14
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}"
|
TAGS="freikin/dawarich:${VERSION}"
|
||||||
|
|
||||||
# Set platforms based on version type and release type
|
# Set platforms based on version type and release type
|
||||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7,linux/arm/v6"
|
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7
|
||||||
|
|
||||||
# Check if this is a patch version (x.y.z where z > 0)
|
# Check if this is a patch version (x.y.z where z > 0)
|
||||||
if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[1-9][0-9]*$ ]]; then
|
if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[1-9][0-9]*$ ]]; then
|
||||||
|
|
@ -80,7 +80,7 @@ jobs:
|
||||||
PLATFORMS="linux/amd64"
|
PLATFORMS="linux/amd64"
|
||||||
elif [[ $VERSION =~ ^[0-9]+\.[0-9]+\.0$ ]]; then
|
elif [[ $VERSION =~ ^[0-9]+\.[0-9]+\.0$ ]]; then
|
||||||
echo "Detected minor version ($VERSION) - building for all platforms"
|
echo "Detected minor version ($VERSION) - building for all platforms"
|
||||||
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7,linux/arm/v6"
|
PLATFORMS="linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7
|
||||||
else
|
else
|
||||||
echo "Version format not recognized or non-semver - using AMD64 only for safety"
|
echo "Version format not recognized or non-semver - using AMD64 only for safety"
|
||||||
PLATFORMS="linux/amd64"
|
PLATFORMS="linux/amd64"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue