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:52:34 +09:00
parent c59ed687d5
commit 0f9acf9d4f

View file

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