mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
fix: syntax
This commit is contained in:
parent
c59ed687d5
commit
0f9acf9d4f
1 changed files with 2 additions and 3 deletions
5
.github/workflows/github-os-sample.yml
vendored
5
.github/workflows/github-os-sample.yml
vendored
|
@ -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!'"
|
||||||
|
|
Loading…
Add table
Reference in a new issue