We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ba094 commit a3cd74aCopy full SHA for a3cd74a
1 file changed
.github/workflows/upgrade-compat.yml
@@ -82,6 +82,7 @@ jobs:
82
run: |
83
WP_CONTAINER=$(docker ps -qf "name=wordpress")
84
PLUGIN_REPO=$PLUGIN_REPO
85
+ PLUGIN_OLD_VERSION=$PLUGIN_OLD_VERSION
86
87
# Install git inside the WordPress container
88
docker exec $WP_CONTAINER apt-get update
@@ -102,7 +103,7 @@ jobs:
102
103
docker exec $WP_CONTAINER wp plugin activate progress-planner --allow-root
104
105
# Show plugin version
- docker exec $WP_CONTAINER wp option get progress_planner_version --allow-root
106
+ docker exec $WP_CONTAINER wp option get progress_planner_version --allow-root | echo $PLUGIN_OLD_VERSION
107
108
# Overwrite plugin files with the latest version from this branch
109
docker cp . $WP_CONTAINER:/var/www/html/wp-content/plugins/progress-planner
0 commit comments