Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
milosbackonja committed Oct 28, 2021
1 parent 498f22e commit 6632a74
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,18 @@ jobs:
printInputs:
runs-on: ubuntu-latest
steps:
- run: |
- name: Print Vars from Input
run: |
echo "Database: ${{ github.event.inputs.database }}"
echo "VPC: ${{ github.event.inputs.vpc }}"
printFromEnv:
runs-on: ubuntu-latest
steps:
- run: |
echo "Database is ${DATABASE}"
echo "VPC is ${VPC}"
env:
DATABASE: ${{ github.event.inputs.database }}
VPC: ${{ github.event.inputs.vpc }}
- name: Print Vars from env
run: |
echo "Database is ${DATABASE}"
echo "VPC is ${VPC}"
env:
DATABASE: ${{ github.event.inputs.database }}
VPC: ${{ github.event.inputs.vpc }}

0 comments on commit 6632a74

Please sign in to comment.