0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2025-06-11 13:12:49 +00:00

Remove unused code

This commit is contained in:
Tonye Jack 2023-09-12 11:13:30 -06:00
parent 8e47058fa9
commit 98feacd421
3 changed files with 14 additions and 35 deletions

View file

@ -34,24 +34,6 @@ runs:
- run: |
bash $GITHUB_ACTION_PATH/entrypoint.sh
shell: bash
# Skip if cache hit and it's on Windows
if: |
(
runner.os == 'Windows' && steps.cache-postgresql.outputs.cache-hit != 'true'
)
||
(
runner.os != 'Windows'
)
env:
# INPUT_<VARIABLE_NAME> is not available in Composite run steps
# https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611
INPUT_POSTGRESQL_VERSION: ${{ inputs.postgresql_version }}
- name: Update PATH
run: |
bash $GITHUB_ACTION_PATH/update-path.sh
shell: bash
env:
# INPUT_<VARIABLE_NAME> is not available in Composite run steps
# https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611