Skip to content

Commit 4720a35

Browse files
committed
Add PGXN release workflow
1 parent 041adb2 commit 4720a35

File tree

3 files changed

+32
-8
lines changed

3 files changed

+32
-8
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.gitignore export-ignore
2+
.gitattributes export-ignore
3+
.github export-ignore
4+
dockerignore export-ignore

.github/workflows/pgxn-release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 🚀 Release on PGXN
2+
on:
3+
push:
4+
# Release on semantic version tag.
5+
tags: ['v[0-9]+.[0-9]+.[0-9]+']
6+
jobs:
7+
release:
8+
name: Release on PGXN
9+
runs-on: ubuntu-latest
10+
container: pgxn/pgxn-tools
11+
steps:
12+
- name: Check out the repo
13+
uses: actions/checkout@v4
14+
- name: Bundle the Release
15+
run: pgxn-bundle
16+
- name: Release on PGXN
17+
env:
18+
PGXN_USERNAME: ${{ secrets.PGXN_USERNAME }}
19+
PGXN_PASSWORD: ${{ secrets.PGXN_PASSWORD }}
20+
run: pgxn-release

META.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "ApacheAGE",
3-
"abstract": "Apache AGE is a PostgreSQL Extension that provides graph database functionality",
4-
"description": "Apache AGE is a PostgreSQL Extension that provides graph database functionality. AGE is an acronym for A Graph Extension, and is inspired by Bitnine's fork of PostgreSQL 10, AgensGraph, which is a multi-model database. The goal of the project is to create single storage that can handle both relational and graph model data so that users can use standard ANSI SQL along with openCypher, the Graph query language. A graph consists of a set of vertices (also called nodes) and edges, where each individual vertex and edge possesses a map of properties. A vertex is the basic object of a graph, that can exist independently of everything else in the graph. An edge creates a directed connection between two vertices. A graph database is simply composed of vertices and edges. This type of database is useful when the meaning is in the relationships between the data. Relational databases can easily handle direct relationships, but indirect relationships are more difficult to deal with in relational databases. A graph database stores relationship information as a first-class entity. Apache AGE gives you the best of both worlds, simultaneously.",
5-
"version": "1.3.0",
2+
"name": "ApacheAGE16",
3+
"abstract": "Graph database functionality for PostgreSQL",
4+
"description": "Apache AGE is a PostgreSQL Extension that provides graph database functionality. The goal of the project is to create single storage that can handle both relational and graph model data so that users can use standard ANSI SQL along with openCypher, the Graph query language.",
5+
"version": "1.5.0",
66
"maintainer": [
77
"users@age.apache.org"
88
],
99
"license": "apache_2_0",
1010
"provides": {
11-
"ApacheAGE": {
11+
"age": {
1212
"abstract": "Apache AGE is a PostgreSQL Extension that provides graph database functionality",
13-
"file": "age--1.3.0.sql",
13+
"file": "age--1.5.0.sql",
1414
"docfile": "README.md",
15-
"version": "1.3.0"
15+
"version": "1.5.0"
1616
}
1717
},
1818
"prereqs": {
1919
"runtime": {
2020
"requires": {
21-
"PostgreSQL": "14.0.0"
21+
"PostgreSQL": ">= 16.0.0, < 17.0.0"
2222
}
2323
}
2424
},

0 commit comments

Comments
 (0)