From a125c7adcd6f280152bd87bd4716a1eb6931273d Mon Sep 17 00:00:00 2001 From: Michiel Dethmers Date: Fri, 29 Dec 2023 17:12:05 +0000 Subject: [PATCH] update version --- .github/workflows/upgrade.yml | 8 +++----- VERSION | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml index d8d2f27cf..015cfc217 100644 --- a/.github/workflows/upgrade.yml +++ b/.github/workflows/upgrade.yml @@ -1,7 +1,7 @@ name: Upgrade -on: [pull_request] +on: [pull_request, push] jobs: test: @@ -61,10 +61,9 @@ jobs: - name: Create Database run: | sudo systemctl start mysql.service - sudo mysql -proot -e 'drop database if exists phplistdb' - sudo mysqladmin -proot create phplistdb + sudo mysql -proot -e 'drop database if exists phplistdb; create database phplistdb;' sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"' - sudo gunzip -c tests/phplist-3.6.sql.gz | mysql -proot phplistdb + sudo gunzip -c tests/phplist-3.6.sql.gz | sudo mysql -proot phplistdb - name: Set bootlist theme run: | @@ -98,7 +97,6 @@ jobs: - name: Run BDD Tests UI run: | cd $GITHUB_WORKSPACE/tests - ../vendor/bin/behat -p chrome -f progress --stop-on-failure --tags=@initialise ../vendor/bin/behat -p chrome -f progress --tags="~@initialise && ~@wip" - name: Reset Database diff --git a/VERSION b/VERSION index 044941ac8..72448ff38 100755 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ # file that keeps track of the latest tag in cvs and the corresponding version # this automates publishing a new version, when it's tagged # if you don't understand this, don't worry. You don't need this file -VERSION=3.6.13 +VERSION=3.7.0