1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/.github/workflows/github-os-sample.yml
2020-10-08 10:52:34 +09:00

13 lines
287 B
YAML

name: github-os-sample
on:
workflow_dispatch:
inputs:
os:
description: runs-on
required: true
default: ubuntu-latest
jobs:
main:
runs-on: ${{ github.event.inputs.os }}
steps:
- run: "echo '${{ github.event.inputs.os }}: hello world!'"