You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "${{ env.IS_PRERELEASE }}" == "false" ]; then
94
+
TAGS="${TAGS}\njmrenouard/mysqltuner:latest"
95
+
fi
96
+
# Print multiline correctly for Github outputs / env
97
+
{
98
+
echo 'DOCKER_IMAGE_TAGS<<EOF'
99
+
echo -e "$TAGS"
100
+
echo 'EOF'
101
+
} >> $GITHUB_ENV
102
+
69
103
- name: Build and push Docker image
70
104
uses: docker/build-push-action@v7
71
105
with:
72
106
context: .
73
107
push: true
74
-
tags: |
75
-
jmrenouard/mysqltuner:latest
76
-
jmrenouard/mysqltuner:${{ env.VERSION }}
108
+
tags: ${{ env.DOCKER_IMAGE_TAGS }}
77
109
labels: |
78
110
org.opencontainers.image.title=MySQLTuner
79
111
org.opencontainers.image.description=**MySQLTuner** is a script written in Perl that allows you to review a MySQL installation quickly and make adjustments to increase performance and stability. The current configuration variables and status data is retrieved and presented in a brief format along with some basic performance suggestions. **MySQLTuner** supports ~300 indicators for MySQL/MariaDB/Percona Server in this latest version.
0 commit comments