Skip to content

Commit a125c7a

Browse files
committed
update version
1 parent 40f4ebf commit a125c7a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/upgrade.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
name: Upgrade
33

4-
on: [pull_request]
4+
on: [pull_request, push]
55

66
jobs:
77
test:
@@ -61,10 +61,9 @@ jobs:
6161
- name: Create Database
6262
run: |
6363
sudo systemctl start mysql.service
64-
sudo mysql -proot -e 'drop database if exists phplistdb'
65-
sudo mysqladmin -proot create phplistdb
64+
sudo mysql -proot -e 'drop database if exists phplistdb; create database phplistdb;'
6665
sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"'
67-
sudo gunzip -c tests/phplist-3.6.sql.gz | mysql -proot phplistdb
66+
sudo gunzip -c tests/phplist-3.6.sql.gz | sudo mysql -proot phplistdb
6867
6968
- name: Set bootlist theme
7069
run: |
@@ -98,7 +97,6 @@ jobs:
9897
- name: Run BDD Tests UI
9998
run: |
10099
cd $GITHUB_WORKSPACE/tests
101-
../vendor/bin/behat -p chrome -f progress --stop-on-failure --tags=@initialise
102100
../vendor/bin/behat -p chrome -f progress --tags="~@initialise && ~@wip"
103101
104102
- name: Reset Database

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# file that keeps track of the latest tag in cvs and the corresponding version
22
# this automates publishing a new version, when it's tagged
33
# if you don't understand this, don't worry. You don't need this file
4-
VERSION=3.6.13
4+
VERSION=3.7.0

0 commit comments

Comments
 (0)