Reputation: 16430
Given I have the following:
name: MyWorkFlow
on: push
env:
FOO: bar1
jobs:
myJob:
- run: export FOO=bar2
- run: echo $FOO
The output is 'bar1'. Is there anyway that I can override these environment variables?
Upvotes: 8
Views: 8445