mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-27 05:25:44 +01:00
Add Docker tag latest
This commit is contained in:
parent
827f27fb7f
commit
4048bf938a
2
.github/workflows/image.yml
vendored
2
.github/workflows/image.yml
vendored
|
@ -21,4 +21,4 @@ jobs:
|
|||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Build image
|
||||
run: build/bin/build "5.4.2 5.5.1 5.5.3 5.6.0 5.6.1 5.7.0 5.8.0"
|
||||
run: build/bin/build "5.4.2 5.5.1 5.5.3 5.6.0 5.6.1 5.7.0 5.8.0" "5.8.0"
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
WP_VERSIONS=${1:-""}
|
||||
WP_LATEST_VERSION=${2:-""}
|
||||
|
||||
if [ -z "${WP_VERSIONS}" ]; then
|
||||
echo "Error: WP_VERSIONS is null"
|
||||
|
@ -10,9 +11,12 @@ fi
|
|||
docker buildx create --use --name build --node build --driver-opt network=host
|
||||
|
||||
# Loop through requested versions
|
||||
for TARGET_VERSION in ${WP_VERSIONS}
|
||||
do
|
||||
for TARGET_VERSION in ${WP_VERSIONS}; do
|
||||
echo "> Building WordPress ${TARGET_VERSION}"
|
||||
|
||||
docker buildx build --pull --push --build-arg "WP_VERSION=${TARGET_VERSION}" --platform "linux/amd64,linux/armhf,linux/aarch64" --tag "nlss/wordpress:${TARGET_VERSION}" .
|
||||
done
|
||||
|
||||
if [ "${TARGET_VERSION}" == "${WP_LATEST_VERSION}"]; then
|
||||
docker buildx build --pull --push --build-arg "WP_VERSION=${TARGET_VERSION}" --platform "linux/amd64,linux/armhf,linux/aarch64" --tag "nlss/wordpress:latest" .
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue
Block a user