Skip to content

Commit

Permalink
Merge pull request #1 from rabea-al/main
Browse files Browse the repository at this point in the history
Tensorflow_keras Component library lock requirement
  • Loading branch information
MFA-X-AI authored Oct 10, 2024
2 parents 8c34693 + 99d3999 commit be3d9b8
Show file tree
Hide file tree
Showing 5 changed files with 1,199 additions and 1,133 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/run-workflow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- name: Clone Repository
run: |
rm -rf ${{ env.COMPONENT_LIBRARY_PATH }}
git clone -b ${{ env.BRANCH_NAME }} https://github.com/${{ github.repository }} ${{ env.COMPONENT_LIBRARY_PATH }}
if [ "${{ github.event_name }}" == "pull_request" ]; then
REPO_URL="${{ github.event.pull_request.head.repo.clone_url }}"
else
REPO_URL="https://github.com/${{ github.repository }}"
fi
git clone -b ${{ env.BRANCH_NAME }} $REPO_URL ${{ env.COMPONENT_LIBRARY_PATH }}
- name: Install Component Library
run: |
Expand Down Expand Up @@ -94,7 +99,7 @@ jobs:
- name: Upload log file
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.LIBRARY_NAME }}-validation-workflow
path: ${{ github.workspace }}/workflow_logs.txt
path: ${{ github.workspace }}/workflow_logs.txt
Loading

0 comments on commit be3d9b8

Please sign in to comment.