Skip to content

Commit ada7727

Browse files
committed
Release 7.14.4
1 parent aa2d1bf commit ada7727

File tree

4 files changed

+135
-1
lines changed

4 files changed

+135
-1
lines changed

.github/workflows/release.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Validate composer.json and composer.lock
19+
run: composer validate --strict
20+
21+
- name: Cache composer packages
22+
id: composer-cache
23+
uses: actions/cache@v3
24+
with:
25+
path: vendor
26+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
27+
restore-keys: |
28+
${{ runner.os }}-php-
29+
30+
- name: Install dependencies
31+
run: composer install --prefer-dist --no-progress
32+
33+
- name: Create temporary artifact folder
34+
run: mkdir artifacts
35+
36+
- name: Create release artifacts
37+
run: tar -czvf artifacts/phppgadmin-${{ github.ref_name }}.tar.gz classes conf help images js lang libraries plugins themes vendor xloadtree LICENSE *.php *.js robots.txt
38+
39+
- name: Upload artifacts for workflow
40+
uses: actions/upload-artifact@v3
41+
with:
42+
name: artifacts
43+
path: artifacts
44+
45+
- name: Release
46+
uses: softprops/action-gh-release@v1
47+
if: startsWith(github.ref, 'refs/tags/')
48+
with:
49+
files: artifacts/phppgadmin-${{ github.ref_name }}.tar.gz

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
selenium/tests/config.inc.php
22
tests/selenium/config.test.php
3+
vendor/

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "phppgadmin/phppgadmin",
33
"description": "phpPgAdmin is a web-based administration tool for PostgreSQL. It is perfect for PostgreSQL DBAs, newbies, and hosting services.",
44
"type": "application",
5-
"license": "GPL-2.0+",
5+
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.4",
88
"ext-pgsql": "*",

composer.lock

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)