-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment Variables not passed through #84
Comments
I'm continuing to research my issue, and I'm half wondering if it's connected with #76, as I've tried moving my environment variables inline with my command, as well as looking into the NodeJS docs, which indicates that |
Thanks for the research on this, I'm looking into it now |
Just published v2.8.0 that I think should resolve this. Thanks for your issue and research! Can you confirm whether this resolves your issue? |
I had to explicitly make my reference |
I tried the following jobs:
jest:
runs-on: ubuntu-latest
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
MAX_ATTEMPTS: 5
CI: true
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: get yarn cache directory path
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Setup cache key and directory for node_modules cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- name: yarn
run: yarn --frozen-lockfile
- name: jest
uses: nick-fields/retry@v2.8.1
with:
command: yarn test --ci --bail --coverage=true
max_attempts: $MAX_ATTEMPTS
timeout_minutes: 10 That did not work. But using github secret |
Describe the bug
Environment variables set on the workflow step (via the
env
keyword) are not passed through to the command when the workflow runs.From my workflow:
Expected behavior
Environment Variables set on the workflow step are used when invoking the command, which is the standard behaviour for the default
run
action, that this is meant to be a drop-in replacement for.Screenshots
N/A
Logs
I can gather logs if necessary, but I feel like this is part feature request part bug report, so I'm not sure how useful logs would be.
The text was updated successfully, but these errors were encountered: