We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2492116 commit d864efcCopy full SHA for d864efc
1 file changed
.github/workflows/deploy-select.yml
@@ -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
0 commit comments