Skip to content

Commit

Permalink
added environments
Browse files Browse the repository at this point in the history
  • Loading branch information
housten authored Jun 11, 2024
1 parent 27280a9 commit 76f8ee1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ on:
jobs:
echo:
runs-on: ubuntu-latest
strategy:
matrix:
environment: [dev,qa,test]

steps:
- name: Run a one-line script
run: echo "Hello this is a workflow template running log level ${{ github.event.inputs.logLevel }}" ; echo "${{ github.event.inputs.logLevel }}">> $GITHUB_STEP_SUMMARY
name: echo ${{ github.event.inputs.logLevel }}
run: echo "Hello this is a workflow template running log level ${{ github.event.inputs.logLevel }}" ; echo "${{ github.event.inputs.logLevel }} ${{ matrix.environment }} ${{ vars.SERVICE_ACCOUNT }} ">> $GITHUB_STEP_SUMMARY
name: echo ${{ github.event.inputs.logLevel }} ${{ matrix.environment }}

0 comments on commit 76f8ee1

Please sign in to comment.