1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00

fix: syntax

This commit is contained in:
Nebel 2020-10-08 10:49:07 +09:00
parent 6a991166fd
commit 0e90b29f85

View file

@ -1,7 +1,13 @@
name: github-os-sample name: github-os-sample
on: workflow_dispatch on:
workflow_dispatch:
inputs:
name:
description: runs-on
required: true
default: ubuntu-latest
jobs: jobs:
main: main:
runs-on: ${{ github.event.event_type }} runs-on: ${{ github.event.inputs.os }}
steps: steps:
- run: echo 'hello world!' - run: echo 'hello world!'