1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00

fix: syntax

This commit is contained in:
Nebel 2020-10-08 10:52:34 +09:00
parent c59ed687d5
commit 0f9acf9d4f

View file

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