From d7f7eb70c17bf7f12317da6e161dd52cdaae363a Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 10:04:26 +0530 Subject: [PATCH 01/14] Updates fix defaults for GH --- .github/workflows/PMM_PROXYSQL.yaml | 5 +++-- .github/workflows/PMM_PS.yaml | 8 ++++---- .github/workflows/PMM_PXC.yaml | 5 +++-- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/PMM_PROXYSQL.yaml b/.github/workflows/PMM_PROXYSQL.yaml index 84ed3b6..7d2d2f2 100644 --- a/.github/workflows/PMM_PROXYSQL.yaml +++ b/.github/workflows/PMM_PROXYSQL.yaml @@ -4,10 +4,10 @@ on: inputs: pxc_version: description: "pxc version, example: 8.0.33-25 Fetched from https://github.com/Percona-QA/package-testing/blob/master/VERSIONS by default" - required: false + required: true pxc_glibc: description: "pxc glibc version, example: 2.35" - required: true + required: false pmm_image: description: "pmm_image, example: perconalab/pmm-server:dev-latest" required: false @@ -26,6 +26,7 @@ jobs: env: PXC_GLIBC: ${{ github.event.inputs.pxc_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} + PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0' }} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index ae1f9f1..e6b6288 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -6,7 +6,7 @@ on: description: "ps version example: 8.0.34-26 , Fetched from https://github.com/Percona-QA/package-testing/blob/master/VERSIONS by default" required: true ps_glibc: - description: "ps glibc version, example: 2.28" + description: "ps glibc version, example: 2.35" required: false pmm_image: description: "pmm_image, example: perconalab/pmm-server:dev-latest" @@ -24,9 +24,9 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 env: - PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.28' }} + PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - + PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.33' }} steps: - uses: actions/checkout@v2 @@ -85,7 +85,7 @@ jobs: run: sudo pmm-admin config --server-insecure-tls --server-url=https://admin:admin@localhost:443 - name: Run for PS tests - run: ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=slowlog + run: ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema working-directory: pmm-qa/pmm-tests - name: Checkout the repo and install node packages diff --git a/.github/workflows/PMM_PXC.yaml b/.github/workflows/PMM_PXC.yaml index c28f207..4cf8cc4 100644 --- a/.github/workflows/PMM_PXC.yaml +++ b/.github/workflows/PMM_PXC.yaml @@ -4,10 +4,10 @@ on: inputs: pxc_version: description: "pxc version, example: 8.0.33-25 Fetched from https://github.com/Percona-QA/package-testing/blob/master/VERSIONS by default" - required: false + required: true pxc_glibc: description: "pxc glibc version, example: 2.35" - required: true + required: false pmm_image: description: "pmm_image, example: perconalab/pmm-server:dev-latest" required: false @@ -26,6 +26,7 @@ jobs: env: PXC_GLIBC: ${{ github.event.inputs.pxc_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} + PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0' }} steps: - uses: actions/checkout@v2 From 8ff0c442e48c3bb94d136dca267604d7d12764f8 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 10:25:14 +0530 Subject: [PATCH 02/14] Updates fix defaults --- .github/workflows/PMM_PROXYSQL.yaml | 2 +- .github/workflows/PMM_PS.yaml | 1 - .github/workflows/PMM_PXC.yaml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PMM_PROXYSQL.yaml b/.github/workflows/PMM_PROXYSQL.yaml index 7d2d2f2..16b264f 100644 --- a/.github/workflows/PMM_PROXYSQL.yaml +++ b/.github/workflows/PMM_PROXYSQL.yaml @@ -26,7 +26,7 @@ jobs: env: PXC_GLIBC: ${{ github.event.inputs.pxc_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0' }} + PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0.33' }} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index e6b6288..0dba5d4 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -33,7 +33,6 @@ jobs: - name: PS_VERSION ENV Setup run: | if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then - PS_VERSION="${{ github.event.inputs.ps_version }}" PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else diff --git a/.github/workflows/PMM_PXC.yaml b/.github/workflows/PMM_PXC.yaml index 4cf8cc4..0bf9aee 100644 --- a/.github/workflows/PMM_PXC.yaml +++ b/.github/workflows/PMM_PXC.yaml @@ -26,7 +26,7 @@ jobs: env: PXC_GLIBC: ${{ github.event.inputs.pxc_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0' }} + PXC_VERSION: ${{ github.event.inputs.pxc_version || '8.0.33' }} steps: - uses: actions/checkout@v2 From 537807ce849c6839e1b5164b5d5612d6ddc3b49b Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 11:10:41 +0530 Subject: [PATCH 03/14] Updates fix defaults --- .github/workflows/PMM_PS.yaml | 7 ++++++- .github/workflows/PMM_PXC.yaml | 8 +++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 0dba5d4..0280758 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -84,7 +84,12 @@ jobs: run: sudo pmm-admin config --server-insecure-tls --server-url=https://admin:admin@localhost:443 - name: Run for PS tests - run: ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema + run: | + if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then + ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema + else + ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema + fi working-directory: pmm-qa/pmm-tests - name: Checkout the repo and install node packages diff --git a/.github/workflows/PMM_PXC.yaml b/.github/workflows/PMM_PXC.yaml index 0bf9aee..01c5235 100644 --- a/.github/workflows/PMM_PXC.yaml +++ b/.github/workflows/PMM_PXC.yaml @@ -85,7 +85,13 @@ jobs: run: sudo pmm-admin config --server-insecure-tls --server-url=https://admin:admin@localhost:443 - name: Run for PXC tests - run: ./pmm-framework.sh --pxc-version ${{ env.PXC_VERSION }} --addclient=pxc,1 --pmm2 --pxc-tarball ${{ env.PXC_TARBALL_PATH }} + run: | + if [[ "${{ github.event.inputs.pxc_version }}" != http* ]]; then + ./pmm-framework.sh --pxc-version ${{ env.PXC_VERSION }} --addclient=pxc,1 --pmm2 + + else + ./pmm-framework.sh --pxc-version ${{ env.PXC_VERSION }} --addclient=pxc,1 --pmm2 --pxc-tarball ${{ env.PXC_TARBALL_PATH }} + fi working-directory: pmm-qa/pmm-tests - name: Checkout the repo and install node packages From 0f49f3d56bd7cb84c21fb7fcd52f3921ec2bf366 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 11:31:43 +0530 Subject: [PATCH 04/14] Updates fix defaults --- .github/workflows/PMM_PS.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 0280758..3af7b25 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -32,7 +32,7 @@ jobs: - name: PS_VERSION ENV Setup run: | - if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then + if [[ "$PS_VERSION" != http* ]]; then PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else @@ -85,7 +85,7 @@ jobs: - name: Run for PS tests run: | - if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then + if [[ "$PS_VERSION" != http* ]]; then ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema else ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema From cdcf88b53b71bfa673804967644b1b36941295ba Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 11:59:44 +0530 Subject: [PATCH 05/14] Updates update version for ps --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 3af7b25..665f6e3 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -26,7 +26,7 @@ jobs: env: PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.33' }} + PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.36' }} steps: - uses: actions/checkout@v2 From af38e24bd87163493dba886e589c5e9db9e0df85 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 12:50:06 +0530 Subject: [PATCH 06/14] Updates update version for ps --- .github/workflows/PMM_PS.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 665f6e3..0c6058f 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -32,7 +32,7 @@ jobs: - name: PS_VERSION ENV Setup run: | - if [[ "$PS_VERSION" != http* ]]; then + if [[ $PS_VERSION != http* ]]; then PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else @@ -85,7 +85,7 @@ jobs: - name: Run for PS tests run: | - if [[ "$PS_VERSION" != http* ]]; then + if [[ $PS_VERSION != http* ]]; then ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema else ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema From 75d07d2aba03ccd95a66ae7728d73dd3ca45d9f6 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 13:36:20 +0530 Subject: [PATCH 07/14] Updates update version for ps --- .github/workflows/PMM_PS.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 0c6058f..2d7c0c1 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -32,7 +32,7 @@ jobs: - name: PS_VERSION ENV Setup run: | - if [[ $PS_VERSION != http* ]]; then + if [[ "$PS_VERSION" != http* ]]; then PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else @@ -85,7 +85,7 @@ jobs: - name: Run for PS tests run: | - if [[ $PS_VERSION != http* ]]; then + if [[ "${{ env.PS_VERSION }}" != http* ]]; then ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema else ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema From 3b7a0eed22c927b991c3ffa828f55aa0d88c70d7 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 13:49:21 +0530 Subject: [PATCH 08/14] Updates --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 2d7c0c1..daf7eeb 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -85,7 +85,7 @@ jobs: - name: Run for PS tests run: | - if [[ "${{ env.PS_VERSION }}" != http* ]]; then + if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema else ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema From 97b2ae78d84c758e2ad52bf512d22872042d02ee Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:13:46 +0530 Subject: [PATCH 09/14] Updates --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index daf7eeb..13b42f4 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -26,7 +26,7 @@ jobs: env: PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.36' }} + PS_VERSION: ${{ github.event.inputs.ps_version || 'https://raw.githubusercontent.com/Percona-QA/package-testing/master/VERSIONS' }} steps: - uses: actions/checkout@v2 From fc515fe541de766c8438e1cc1973bca7479dd463 Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:25:49 +0530 Subject: [PATCH 10/14] Updates --- .github/workflows/PMM_PS.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 13b42f4..ec58e42 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -4,12 +4,15 @@ on: inputs: ps_version: description: "ps version example: 8.0.34-26 , Fetched from https://github.com/Percona-QA/package-testing/blob/master/VERSIONS by default" + default: 'https://github.com/Percona-QA/package-testing/blob/master/VERSIONS' required: true ps_glibc: description: "ps glibc version, example: 2.35" + default : '2.35' required: false pmm_image: description: "pmm_image, example: perconalab/pmm-server:dev-latest" + default : 'perconalab/pmm-server:dev-latest' required: false push: branches: @@ -26,7 +29,7 @@ jobs: env: PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PS_VERSION: ${{ github.event.inputs.ps_version || 'https://raw.githubusercontent.com/Percona-QA/package-testing/master/VERSIONS' }} + PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.36' }} steps: - uses: actions/checkout@v2 From 79047627166d80ab2460f3b517a5f56a404c035d Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:35:24 +0530 Subject: [PATCH 11/14] Updates --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index ec58e42..a98527a 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -35,7 +35,7 @@ jobs: - name: PS_VERSION ENV Setup run: | - if [[ "$PS_VERSION" != http* ]]; then + if [[ "github.event.inputs.ps_version" != http* ]]; then PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else From 62dbdd805dd26a4915074e62733ab2ba66a8af7f Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:40:14 +0530 Subject: [PATCH 12/14] Updates --- .github/workflows/PMM_PS.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index a98527a..58c54b6 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -29,13 +29,13 @@ jobs: env: PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} - PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.36' }} + PS_VERSION: ${{ github.event.inputs.ps_version || 'https://raw.githubusercontent.com/Percona-QA/package-testing/master/VERSIONS' }} steps: - uses: actions/checkout@v2 - name: PS_VERSION ENV Setup run: | - if [[ "github.event.inputs.ps_version" != http* ]]; then + if [[ "$PS_VERSION" != http* ]]; then PS_VERSION_PATH=$(echo "ps-$PS_VERSION") PS_VERSION_TRIMED=$(echo ${PS_VERSION%-*}) else @@ -88,7 +88,7 @@ jobs: - name: Run for PS tests run: | - if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then + if [[ "${{ env.PS_VERSION }}" != http* ]]; then ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --query-source=perfschema else ./pmm-framework.sh --ps-version ${{ env.PS_VERSION }} --setup-pmm-ps-integration --pmm2 --ps-tarball ${{ env.PS_TARBALL_PATH }} --query-source=perfschema From 2f4ba685f8f061f0a5386b89f1501a7b99cf152f Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:44:27 +0530 Subject: [PATCH 13/14] Updates --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 58c54b6..a4c946a 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -45,7 +45,7 @@ jobs: PS_VERSION_TRIMED=$(echo ${PS_VERSION_FULL%-*}) fi echo "PS_VERSION=${PS_VERSION}" | sed 's/"//g' >> $GITHUB_ENV - echo "PS_VERSION_PATH=${PS_VERSION_PATH}" >> $GITHUB_ENV + echo "PS_VERSION_PATH=${PS_VERSION_PATH} | sed 's/"//g' " >> $GITHUB_ENV echo "PS_VERSION_TRIMED=${PS_VERSION_TRIMED}" >> $GITHUB_ENV From c851acc3b0876dcfdc1baab0ae969cde7e4792ca Mon Sep 17 00:00:00 2001 From: Saikumar Date: Tue, 7 Jan 2025 16:47:39 +0530 Subject: [PATCH 14/14] Updates --- .github/workflows/PMM_PS.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index a4c946a..1e17c38 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -45,7 +45,7 @@ jobs: PS_VERSION_TRIMED=$(echo ${PS_VERSION_FULL%-*}) fi echo "PS_VERSION=${PS_VERSION}" | sed 's/"//g' >> $GITHUB_ENV - echo "PS_VERSION_PATH=${PS_VERSION_PATH} | sed 's/"//g' " >> $GITHUB_ENV + echo "PS_VERSION_PATH=${PS_VERSION_PATH}" | sed 's/"//g' >> $GITHUB_ENV echo "PS_VERSION_TRIMED=${PS_VERSION_TRIMED}" >> $GITHUB_ENV