mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
14 lines
318 B
YAML
14 lines
318 B
YAML
name: github-os-sample
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
name:
|
|
description: runs-on
|
|
required: true
|
|
default: ubuntu-latest
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
# runs-on: ${{ github.event.inputs.os }}
|
|
steps:
|
|
- run: "echo '${{ github.event.inputs.os }}: hello world!'"
|