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/checkout@v2.3.2
- uses: Azure/login@v1
with:
creds: ${{secrets.AZURE_CREDENTIALS}}
- name: Create AML Online Endpoint
uses: coding-kitties/create-azure-machine-learning-online-endpoint@v0.4.0
with:
endpoint_name: 'my-endpoint'
resource_group: 'my-resource-group'
workspace_name: 'my-workspace'