0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00

Add support for canceling other jobs

This commit is contained in:
Tonye Jack 2023-09-11 20:23:01 -06:00
parent 3f1b044b57
commit 242b4d6e4b

View file

@ -18,7 +18,8 @@ runs:
elif [[ "${{ runner.os }}" == "macOS" ]]; then elif [[ "${{ runner.os }}" == "macOS" ]]; then
cache_dir=$(brew --cache postgresql@${{ inputs.postgresql_version }}) cache_dir=$(brew --cache postgresql@${{ inputs.postgresql_version }})
elif [[ "${{ runner.os }}" == "Windows" ]]; then elif [[ "${{ runner.os }}" == "Windows" ]]; then
cache_dir=$(choco search postgresql${{ inputs.postgresql_version }} --exact --limit-output | grep "^postgresql " | awk '{print $NF}') choco cache list
cache_dir=$(choco cache list | grep 'postgresql${{ inputs.postgresql_version }}')
fi fi
echo "cache_dir=$cache_dir" >> "$GITHUB_OUTPUT" echo "cache_dir=$cache_dir" >> "$GITHUB_OUTPUT"
shell: bash shell: bash