Skip to content

Commit d864efc

Browse files
authored
Create deploy-select.yml
1 parent 2492116 commit d864efc

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Workflow With Select
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
docker-server:
7+
description: Select the docker server
8+
required: true
9+
type: choice
10+
options:
11+
- ubuntu-latest
12+
- ubuntu-24.04
13+
- ubuntu-22.04
14+
15+
jobs:
16+
17+
test-runner-with-workflow-inputs:
18+
19+
runs-on: [ "${{ inputs.docker-server }}" ]
20+
21+
steps:
22+
23+
- name: Checkout do repositório
24+
uses: actions/checkout@v4
25+
26+
- name: Docker ps
27+
run: |
28+
echo "======================================================"
29+
docker ps
30+
echo "======================================================"

0 commit comments

Comments
 (0)