Skip to content

Test GH Actions env context #5

Test GH Actions env context

Test GH Actions env context #5

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "CUSTOM_FOO=foo" >> "$GITHUB_ENV"
- env:
CUSTOM_BAR: ${{ env.CUSTOM_FOO }}
CUSTOM_BAZ: "::${{ env.CUSTOM_FOO }}::"
run: "env | grep CUSTOM_"