bump pgrx to 0.12.6 for official pg17 support (#64) #1
Workflow file for this run
This file contains 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
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 |