File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4242 id : process_release_version
4343 run : |
4444 VERSION=$(sudo nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
45- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
45+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
4646 if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
4747 VERSION=${{ inputs.postgresVersion }}
4848 fi
9292 id : process_release_version
9393 run : |
9494 VERSION=$(sudo nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
95- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
95+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
9696 echo "version=$VERSION" >> "$GITHUB_OUTPUT"
9797 echo "major_version=$(echo $VERSION | cut -d'.' -f1)" >> "$GITHUB_OUTPUT"
9898
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101101 id : process_release_version
102102 run : |
103103 VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
104- VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
104+ VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
105105 if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
106106 VERSION=${{ inputs.postgresVersion }}
107107 fi
You can’t perform that action at this time.
0 commit comments