Files
wlan-testing/.github/actions/cleanup-docker/action.yml
Max b08acb2bf7 add advanced workflow (#283)
Signed-off-by: Max Brenner <xamrennerb@gmail.com>

Co-authored-by: Shivam Thakur <70829776+shivamcandela@users.noreply.github.com>
2021-11-23 15:34:45 +01:00

18 lines
579 B
YAML

name: build and push Docker image
description: build and push the wlan-testing Docker image
inputs:
registry_user:
description: the user to authenticate against the registry
required: true
registry_password:
description: the password to authenticate against the registry
required: true
runs:
using: "composite"
steps:
- name: cleanup Docker image
shell: bash
run: curl -u ${{ inputs.registry_user }}:${{ inputs.registry_password }} -X DELETE "https://tip.jfrog.io/artifactory/tip-wlan-cloud-docker-repo/cloud-sdk-nightly/${{ github.run_id }}"