Skip to content

Called by Curl

Called by Curl #1

Workflow file for this run

name: Called by Curl
on:
workflow_dispatch:
inputs:
build_cmd:
description: 'My build command'
test_cmd:
description: 'My test command'
jobs:
deal-with-inputs:
runs-on: [self-hosted]
steps:
- name: Build command
run: |
echo "${{ github.event.inputs.build_command }}"
- name: Test command
run: |
echo "${{ github.event.inputs.test_command }}"