Skip to content

Commit

Permalink
Release fixes (#248)
Browse files Browse the repository at this point in the history
* Release fixes

* Do trunk publish outside release

We need to test

* attempt

* cat github output for test

* Get tag from git

* Remove debug statements

* attempt

* remove debug statement
  • Loading branch information
v0idpwn authored Jun 4, 2024
1 parent b151fa9 commit 9066da1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ jobs:
env:
TRUNK_API_TOKEN: ${{ secrets.TRUNK_AUTH_TOKEN }}
run: |
pgmq_ver=$(stoml Cargo.toml package.version)
pgmq_descr=$(stoml Cargo.toml package.description)
pgmq_repo=$(stoml Cargo.toml package.repository)
pgmq_ver=$(stoml Trunk.toml extension.version)
pgmq_descr=$(stoml Trunk.toml extension.description)
pgmq_repo=$(stoml Trunk.toml extension.repository)
trunk publish pgmq --version ${pgmq_ver} --description "A lightweight message queue. Like AWS SQS and RSMQ, on Postgres." --homepage "https://github.com/tembo-io/pgmq" --repository "https://github.com/tembo-io/pgmq" --license "PostgreSQL" --category featured --category orchestration
build_and_push:
name: Build and push images
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
id: versions
run: |
echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "TAG_VER=$(/usr/local/bin/stoml Cargo.toml package.version)" >> $GITHUB_OUTPUT
echo "TAG_VER=$(grep 'default_version' pgmq.control | cut -d "'" -f 2)" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 1 addition & 1 deletion pgmq.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
comment = 'A lightweight message queue. Like AWS SQS and RSMQ but on Postgres.'
default_version = '1.3.2'
default_version = '1.3.3'
module_pathname = '$libdir/pgmq'
schema = 'pgmq'
relocatable = false
Expand Down
Empty file added sql/pgmq--1.3.1--1.3.2.sql
Empty file.
Empty file added sql/pgmq--1.3.2--1.3.3.sql
Empty file.

0 comments on commit 9066da1

Please sign in to comment.