1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-25 02:05:18 +00:00
_/.github/workflows/github-os-sample.yml

14 lines
256 B
YAML
Raw Normal View History

2020-10-08 10:45:43 +09:00
name: github-os-sample
2020-10-08 10:49:07 +09:00
on:
workflow_dispatch:
inputs:
name:
description: runs-on
required: true
default: ubuntu-latest
2020-10-08 10:45:43 +09:00
jobs:
main:
2020-10-08 10:49:07 +09:00
runs-on: ${{ github.event.inputs.os }}
2020-10-08 10:45:43 +09:00
steps:
- run: echo 'hello world!'