|
25 | 25 | run: env USE_DOCKER=1 POSTGRES_VERSION=14 ./build-and-test.sh
|
26 | 26 | - name: Test on PG15
|
27 | 27 | run: env USE_DOCKER=1 POSTGRES_VERSION=15 ./build-and-test.sh
|
| 28 | + - name: Test on PG16 |
| 29 | + run: env USE_DOCKER=1 POSTGRES_VERSION=16 ./build-and-test.sh |
| 30 | + - name: Test on PG17 |
| 31 | + run: env USE_DOCKER=1 POSTGRES_VERSION=17 ./build-and-test.sh |
28 | 32 | - name: Build for PG11
|
29 | 33 | run: env POSTGRES_VERSION=11 ./docker-build-dist.sh
|
30 | 34 | - name: Build for PG12
|
|
35 | 39 | run: env POSTGRES_VERSION=14 ./docker-build-dist.sh
|
36 | 40 | - name: Build for PG15
|
37 | 41 | run: env POSTGRES_VERSION=15 ./docker-build-dist.sh
|
| 42 | + - name: Build for PG16 |
| 43 | + run: env POSTGRES_VERSION=16 ./docker-build-dist.sh |
| 44 | + - name: Build for PG17 |
| 45 | + run: env POSTGRES_VERSION=17 ./docker-build-dist.sh |
38 | 46 | - name: Create Release
|
39 | 47 | id: create_release
|
40 | 48 | uses: actions/create-release@v1
|
|
90 | 98 | asset_path: ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg15.tar.gz
|
91 | 99 | asset_name: postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg15.tar.gz
|
92 | 100 | asset_content_type: application/gzip
|
| 101 | + - name: Upload PG16 tarball |
| 102 | + uses: actions/upload-release-asset@v1 |
| 103 | + env: |
| 104 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 105 | + with: |
| 106 | + upload_url: ${{ steps.create_release.outputs.upload_url }} |
| 107 | + asset_path: ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg16.tar.gz |
| 108 | + asset_name: postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg16.tar.gz |
| 109 | + asset_content_type: application/gzip |
| 110 | + - name: Upload PG17 tarball |
| 111 | + uses: actions/upload-release-asset@v1 |
| 112 | + env: |
| 113 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 114 | + with: |
| 115 | + upload_url: ${{ steps.create_release.outputs.upload_url }} |
| 116 | + asset_path: ./dist/postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg17.tar.gz |
| 117 | + asset_name: postgres-protobuf-${{ steps.get_version.outputs.VERSION }}-linux-x86_64-for-pg17.tar.gz |
| 118 | + asset_content_type: application/gzip |
0 commit comments