We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8728b commit bd46bbeCopy full SHA for bd46bbe
.github/workflows/run-test/action.yml
@@ -43,8 +43,11 @@ runs:
43
&& (inputs.sauce-username != null && inputs.sauce-username != '')
44
shell: bash
45
run: |
46
- echo "SAUCE_ACCESS_KEY=${{ inputs.sauce-access-key }}" >> $GITHUB_ENV
47
- echo "SAUCE_USERNAME=${{ inputs.sauce-username }}" >> $GITHUB_ENV
+ echo "SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY" >> $GITHUB_ENV
+ echo "SAUCE_USERNAME=$SAUCE_USERNAME" >> $GITHUB_ENV
48
+ env:
49
+ SAUCE_ACCESS_KEY: ${{ inputs.sauce-access-key }}
50
+ SAUCE_USERNAME: ${{ inputs.sauce-username }}
51
- name: Run tests Elastic Stack ${{ matrix.stack-version }} - ${{ matrix.scope }} - ${{ fromJSON('{"none":"Puppeteer"}')[inputs.mode] || inputs.mode }}
52
run: './.ci/scripts/test.sh'
53
0 commit comments