Skip to content

Commit

Permalink
Add pgxn stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Florents-Tselai committed Dec 8, 2024
1 parent 3e7fcb1 commit 546233a
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release-pgxn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
on:
push:
tags: [v*]
jobs:
release:
name: Release on PGXN
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
env:
PGXN_USERNAME: ${{ secrets.PGXN_USERNAME }}
PGXN_PASSWORD: ${{ secrets.PGXN_PASSWORD }}
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Bundle the Release
id: bundle
run: pgxn-bundle
- name: Release on PGXN
run: pgxn-release
44 changes: 44 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "pgpdf",
"abstract": "PDF Type for Postgres",
"version": "0.1.0",
"maintainer": [
"Florents Tselai <[email protected]>"
],
"license": "GPL-2.0",
"generated_by": "Florents Tselai",
"release_status": "stable",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "14.0.0"
}
}
},
"provides": {
"pgpdf": {
"file": "sql/pgpdf--0.1.0.sql",
"docfile": "README.md",
"version": "0.1.0",
"abstract": "PDF Type for Postgres"
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/Florents-Tselai/pgpdf/issues"
},
"repository": {
"url": "git://github.com/Florents-Tselai/pgpdf.git" ,
"web": "https://github.com/Florents-Tselai/pgpdf",
"type": "git"
}
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"pdf",
"documents"
]
}

0 comments on commit 546233a

Please sign in to comment.