how to install requirement.txt using github action.
- name: Install workspace requirements.txt on cluster
env:
CLUSTER_ID: ${{ secrets.DATABRICKS_CLUSTER_ID }}
run: |
databricks libraries install \
--cluster-id "$CLUSTER_ID" \
--whl "dbfs:/FileStore/engineering_workflows/requirements.txt"
But this does not work