Skip to content

Commit 498f892

Browse files
authored
Merge pull request #10 from ps-actions-sandbox/demo
Demo
2 parents 13efc81 + b4bf808 commit 498f892

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/demo.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: demoFlow
22

33
on:
4-
workflow_dispatch:
4+
workflow_dispatch:
5+
inputs:
6+
name:
7+
description: 'Person name'
8+
default: 'Team'
59

610
jobs:
711
echo:
12+
strategy:
13+
matrix:
14+
environments: [dev,test,qa]
815
runs-on: ubuntu-latest
916
steps:
1017
- name: Echo
11-
run: echo "Hello, World!"
18+
run: echo "Hello, ${{ matrix.environment }} ${{ vars.SERVICE_ACCOUNT }}"; echo " ${{ matrix.environment }} ${{ vars.SERVICE_ACCOUNT }} ">> $GITHUB_STEP_SUMMARY
1219

0 commit comments

Comments
 (0)