Skip to content

Commit

Permalink
test run
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 93778e2 commit c92b950
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/upload_artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ 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 }})
echo "uploaded_file=$uploaded_path" >> $GITHUB_OUTPUT
3 changes: 3 additions & 0 deletions .github/workflows/check_scenarios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Create report.json directory
run: mkdir -p reports/

- name: Validation
uses: ./.github/actions/run_event_validation
with:
Expand Down
1 change: 1 addition & 0 deletions scripts/upload_file_to_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def main():
credentials_path = args.credentials

if not os.path.exists(local_file_path):
print(f"file {local_file_path} not found")
# Local file does not exist; do nothing
sys.exit(0)

Expand Down

0 comments on commit c92b950

Please sign in to comment.