Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
Signed-off-by: tnazarew <[email protected]>
  • Loading branch information
tnazarew committed Oct 24, 2024
1 parent 531352c commit a8e65e5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/actions/upload_artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ runs:
id: upload-artifact
shell: bash
run: |
uploaded_path=$(python scripts/upload_file_to_gcs.py ${{ inputs.local-file-path }} ${{ inputs.gcs-path }} --credentials ${{ inputs.credentials }})
uploaded_path=$(python scripts/upload_file_to_gcs.py ${{ inputs.local-file-path }} ${{ inputs.gcs-path }} --credentials ${{ inputs.credentials }} 2> /tmp/upload.err)
echo "LOG HERE >>>>>> uploaded_file=$uploaded_path"
echo "LOG HERE >>>>>> stderr: $(cat /tmp/upload.err)"
echo "uploaded_file=$uploaded_path" >> $GITHUB_OUTPUT
16 changes: 13 additions & 3 deletions .github/workflows/main_ol_spec_changes.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
name: Check for changes in OL
# Assumption here is that there will be a change that touches spec or spark integration

on: push
on:
push:
workflow_dispatch:
inputs:
run_tests:
description: 'Run tests'
required: false
default: 'true'
openlineage_release:
description: 'Override OpenLineage release version'
required: false
# actual trigger for daily run of workflow
#on:
# schedule:
Expand All @@ -18,8 +28,8 @@ jobs:
initialize_workflow:
runs-on: ubuntu-latest
outputs:
changes_in_spec: ${{steps.check-changes.outputs.changes_found}}
ol_release: ${{ steps.get-release.outputs.openlineage_release }}
changes_in_spec: ${{ github.event.inputs.run_tests || steps.check-changes.outputs.changes_found }}
ol_release: ${{ github.event.inputs.openlineage_release || steps.get-release.outputs.openlineage_release }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit a8e65e5

Please sign in to comment.