Skip to content

Commit

Permalink
Merge pull request #27 from iMattPro/release-rc1
Browse files Browse the repository at this point in the history
RC1-release
  • Loading branch information
iMattPro authored May 12, 2024
2 parents 82ba9fa + 3f302d5 commit 49d8d74
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
# START Basic Checks Job (EPV, code sniffer, images check, etc.)
basic-checks:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand All @@ -35,14 +35,14 @@ jobs:

steps:
- name: Checkout phpBB
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpbb/phpbb
ref: ${{ env.PHPBB_BRANCH }}
path: phpBB3

- name: Checkout extension
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: phpBB3/phpBB/ext/${{ env.EXTNAME }}

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

# START MySQL and MariaDB Job
mysql-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand Down Expand Up @@ -158,14 +158,14 @@ jobs:

steps:
- name: Checkout phpBB
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpbb/phpbb
ref: ${{ env.PHPBB_BRANCH }}
path: phpBB3

- name: Checkout extension
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: phpBB3/phpBB/ext/${{ env.EXTNAME }}

Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Setup node dependencies
run: npm ci
working-directory: ./phpBB3/phpBB/ext/phpbb/webpushnotifications
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

# START PostgreSQL Job
postgres-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand Down Expand Up @@ -295,14 +295,14 @@ jobs:

steps:
- name: Checkout phpBB
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpbb/phpbb
ref: ${{ env.PHPBB_BRANCH }}
path: phpBB3

- name: Checkout extension
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: phpBB3/phpBB/ext/${{ env.EXTNAME }}

Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Setup node dependencies
run: npm ci
working-directory: ./phpBB3/phpBB/ext/phpbb/webpushnotifications
Expand All @@ -360,7 +360,7 @@ jobs:

# START Other Tests Job (SQLite 3 and mssql)
other-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand Down Expand Up @@ -402,14 +402,14 @@ jobs:

steps:
- name: Checkout phpBB
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: phpbb/phpbb
ref: ${{ env.PHPBB_BRANCH }}
path: phpBB3

- name: Checkout extension
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: phpBB3/phpBB/ext/${{ env.EXTNAME }}

Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Setup node dependencies
run: npm ci
working-directory: ./phpBB3/phpBB/ext/phpbb/webpushnotifications
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "An official phpBB extension that allows board users to receive browser-based push notifications.",
"homepage": "https://www.phpbb.com",
"version": "1.0.0-dev",
"version": "1.0.0-RC1",
"license": "GPL-2.0-only",
"authors": [
{
Expand Down Expand Up @@ -38,7 +38,12 @@
"extra": {
"display-name": "phpBB Browser Push Notifications",
"soft-require": {
"phpbb/phpbb": ">=3.3.12,<4.0.0@dev"
"phpbb/phpbb": ">=3.3.12@dev,<4.0.0@dev"
},
"version-check": {
"host": "imattpro.github.io",
"directory": "/version",
"filename": "webpushnotifications.json"
}
}
}

0 comments on commit 49d8d74

Please sign in to comment.