This GitHub Action creates an Azure Machine Learning Online Endpoint.
Features:
- Create an Azure Machine Learning Online Endpoint
- Check if endpoint already exists, only update if it doesn't
- Checks if resource group, workspace and endpoint exist
For other Azure Machine Learning related github actions check out:
- Authenticate using Azure Login
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: Azure/login@v1
with:
creds: ${{secrets.AZURE_CREDENTIALS}}
- name: Create AML Online Endpoint
uses: coding-kitties/[email protected]
with:
endpoint_name: 'my-endpoint'
resource_group: 'my-resource-group'
workspace_name: 'my-workspace'