CoolFace
Apppublic

uxoxo/eb2ab

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
0likes
custom-command.yml18 linesDownload Raw Back to workflows
1name: Custom Command Runner2 3on:4  workflow_dispatch:5    inputs:6      custom_command:7        description: 'Enter a shell command to run on self-hosted Mac'8        required: true9        default: 'echo Hello from Mac!'10 11jobs:12  CustomCommand:13    runs-on: [self-hosted, macos]14    steps:15      - name: Run Custom Command16        run: |17          eval "${{ github.event.inputs.custom_command }}"18