Skip to content

Commit

Permalink
test new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawyer committed Oct 23, 2024
1 parent a2f2805 commit 4912e0f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/dynamic-service-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
id: changed-files
uses: tj-actions/changed-files@v40

- name: Display all changed files
run: |
echo "🔍 Changed files in this push/PR:"
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo " → $file"
done
- name: Set up build matrix
id: set-matrix
run: |
Expand Down
5 changes: 4 additions & 1 deletion ml-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,7 @@ WORKDIR /app/src
EXPOSE 8000

# Start the FastAPI server
CMD ["uvicorn", "ml_api.main:app", "--host", "0.0.0.0", "--port", "8000", "--log-level", "info"]
CMD ["uvicorn", "ml_api.main:app", "--host", "0.0.0.0", "--port", "8000", "--log-level", "info"]


# test

0 comments on commit 4912e0f

Please sign in to comment.