-
Notifications
You must be signed in to change notification settings - Fork 459
Add PGXN release workflow #1711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
theory
wants to merge
1
commit into
apache:master
Choose a base branch
from
theory:pgxn
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| .gitignore export-ignore | ||
| .gitattributes export-ignore | ||
| .github export-ignore | ||
| dockerignore export-ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name: 🚀 Release on PGXN | ||
| on: | ||
| push: | ||
| # Release on semantic version tag. | ||
| tags: ['v[0-9]+.[0-9]+.[0-9]+'] | ||
| jobs: | ||
| release: | ||
| name: Release on PGXN | ||
| runs-on: ubuntu-latest | ||
| container: pgxn/pgxn-tools | ||
| steps: | ||
| - name: Check out the repo | ||
| uses: actions/checkout@v4 | ||
| - name: Bundle the Release | ||
| run: pgxn-bundle | ||
| - name: Release on PGXN | ||
| env: | ||
| PGXN_USERNAME: ${{ secrets.PGXN_USERNAME }} | ||
| PGXN_PASSWORD: ${{ secrets.PGXN_PASSWORD }} | ||
| run: pgxn-release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,24 @@ | ||
| { | ||
| "name": "ApacheAGE", | ||
| "abstract": "Apache AGE is a PostgreSQL Extension that provides graph database functionality", | ||
| "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.", | ||
| "version": "1.3.0", | ||
| "name": "ApacheAGE16", | ||
| "abstract": "Graph database functionality for PostgreSQL", | ||
| "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.", | ||
| "version": "1.5.0", | ||
| "maintainer": [ | ||
| "[email protected]" | ||
| ], | ||
| "license": "apache_2_0", | ||
| "provides": { | ||
| "ApacheAGE": { | ||
| "age": { | ||
| "abstract": "Apache AGE is a PostgreSQL Extension that provides graph database functionality", | ||
| "file": "age--1.3.0.sql", | ||
| "file": "age--1.5.0.sql", | ||
| "docfile": "README.md", | ||
| "version": "1.3.0" | ||
| "version": "1.5.0" | ||
| } | ||
| }, | ||
| "prereqs": { | ||
| "runtime": { | ||
| "requires": { | ||
| "PostgreSQL": "14.0.0" | ||
| "PostgreSQL": ">= 16.0.0, < 17.0.0" | ||
| } | ||
| } | ||
| }, | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.