Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
michield committed Dec 29, 2023
1 parent 40f4ebf commit a125c7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

name: Upgrade

on: [pull_request]
on: [pull_request, push]

jobs:
test:
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a125c7a

Please sign in to comment.