diff --git a/.github/workflows/08-secrets.yml b/.github/workflows/08-secrets.yml index 5ca2ce6..02f79d0 100644 --- a/.github/workflows/08-secrets.yml +++ b/.github/workflows/08-secrets.yml @@ -36,4 +36,14 @@ jobs: run: echo "$Greeting, $Name!" env: Name: ${{ secrets.Name }} - \ No newline at end of file + + # Runs a single command using the runners shell + - name: Pass Structured Objects via Context + run: echo "${{ secrets.Structured }}" + + - name: Pass Structured Objects via Environment + run: echo "$Structured" + env: + Structured: ${{ secrets.Structured }} + + \ No newline at end of file