Skip to content

Update Version on PGXN Config Files #23

Update Version on PGXN Config Files

Update Version on PGXN Config Files #23

name: Update Version on PGXN Config Files
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
on:
workflow_dispatch:
inputs:
project_version:
description: "Version number to be released e.g 10.0.3"
required: true
microsoft_email:
description: "Email to be written on changelogs"
default: "[email protected]"
required: false
name:
description: "Name to be written on changelogs"
default: "Gurkan Indibay"
required: false
jobs:
update_pgxn:
name: Update pgxn configuration
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev python3-testresources
- name: Clone Tools branch
run: git clone --depth 1 --branch v0.8.24 https://github.com/citusdata/tools.git
- name: Install Python requirements
run: python -m pip install -r tools/packaging_automation/requirements.txt
- name: Set git name and email
run: |
git config --global user.email "${{ github.event.inputs.microsoft_email }}" && \
git config --global user.name "${{ github.event.inputs.name }}"
- name: Update pgxn files
run: |
python -m tools.packaging_automation.update_pgxn \
--prj_ver ${{ github.event.inputs.project_version }} \
--gh_token "${GH_TOKEN}" \
--pipeline \
--exec_path "$(pwd)"