2023-10-20 05:38:39 +02:00
|
|
|
# action.yml
|
|
|
|
name: 'OSC Test'
|
|
|
|
description: 'Checkout the rpm and install run from osc'
|
|
|
|
inputs:
|
2023-10-23 06:52:31 +02:00
|
|
|
osc_user: # id of input
|
2023-10-20 05:38:39 +02:00
|
|
|
description: 'Who is the osc user'
|
|
|
|
required: true
|
|
|
|
default: 'alexlau'
|
|
|
|
outputs:
|
|
|
|
time: # id of output
|
|
|
|
description: 'The time we greeted you'
|
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
args:
|
2023-10-23 06:52:31 +02:00
|
|
|
- ${{ inputs.osc_user}}
|
|
|
|
- ${{ inputs.osc_path}}
|
|
|
|
- ${{ inputs.osc_package}}
|