mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-13 18:04:20 -05:00
18 lines
410 B
YAML
18 lines
410 B
YAML
|
name: Delete artifact
|
||
|
description: Delete an artifact by name
|
||
|
|
||
|
inputs:
|
||
|
name:
|
||
|
description: 'The name of the artifact.'
|
||
|
required: true
|
||
|
workflowID:
|
||
|
description: 'The ID of the workflow.'
|
||
|
required: true
|
||
|
|
||
|
runs:
|
||
|
using: "composite"
|
||
|
steps:
|
||
|
- name: Delete artifact
|
||
|
shell: bash
|
||
|
run: ./.github/actions/artifact_delete/delete_artifact.sh ${{ inputs.workflowID }} ${{ inputs.name }}
|