acr-build
acr-build copied to clipboard
Github action to build containers with Azure Container Registry
Fixes #7 Adds a `platform` optional argument to specify the platform to build against
I am trying to build ACR image with the following code ``` - name: ACR build id: build-push-acr uses: azure/acr-build@v1 with: service_principal: ${{ secrets.service_principal }} service_principal_password: ${{ secrets.service_principal_password }} tenant:...
Running the task does not push a "latest" tag with the image - is that possible? I was using this command locally, which I believe would push both hash and...
Is it possible to set the subscription also?
Fixes #2 Uses `main` as default branch
Is it possible to make this actions work on a windows container which has docker installed?
Only service_principal & service_principal_password can be provided in the GitHub Action. When ACR is set with Managed Identity, how to provide the identity to use to connect to ACR ?...
## Issue When you pass a string with KeyValue pairs to the build-args option, fails with: `parse error: Invalid numeric literal at line 1, column 5` When you pass an...
The current action requires that you pass in credentials to the action. Would it be possible to just rely on a previous azure/login task? This would allow a user to...