Skip to content

Commit

Permalink
Testing env var reading
Browse files Browse the repository at this point in the history
  • Loading branch information
dotemacs committed Jul 24, 2024
1 parent aeaa99f commit 09b30f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
- name: check if vars are being read right
env:
SOMEVAR: ${{ vars.FOO }}
run: echo "Start-$SOMEVAR-end."
run: |
echo "Start-$SOMEVAR-end."
echo "Another: ${{ vars.FOO }}."
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
Expand Down

0 comments on commit 09b30f1

Please sign in to comment.