Skip to content

Commit

Permalink
mkdir -p for folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsadler-branch committed Aug 11, 2022
1 parent 495cfbe commit f1fcb09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ runs:
echo ${{ inputs.GCP_TOKEN }} > $bq_keyfile
# Grab Changed files
output_folder="$(pwd)/target"
mkdir -p $output_folder
output_file="$(pwd)/target/test_results.txt"
mkdir -p $output_file
modified_files=$(python3 -m py-github-helper -o ${{ inputs.GH_ORG }} -r ${{ inputs.GH_REPO }} -l ${{ inputs.PR_NUMBER }} -c get_files_changed_during_pr -e '{}')
pretty_file_names=$(python3 helpers/run_sql_checks.py --files "${modified_files}" --manifest_file $manifest_file --project_id ${{ inputs.project_id }} --keyfile_path $bq_keyfile --ignored_schemas ${{ inputs.ignored_schemas }} --irregular_schemas ${{ inputs.irregular_schemas }} --dev_prefix ${{ inputs.dev_prefix }} --prod_prefix ${{ inputs.prod_prefix }} --fallback_prefix ${{ inputs.fallback_prefix }} --output_file $output_file)
Expand Down

0 comments on commit f1fcb09

Please sign in to comment.