1
0
Fork 0
mirror of synced 2024-09-29 08:41:15 +13:00

Merge pull request #512 from cdvv7788/gh-actions-env

feat: Update usage of get-env in gh-actions (deprecation)
This commit is contained in:
Nick Sweeting 2020-10-23 09:26:44 -04:00 committed by GitHub
commit c148c27c66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,6 @@ jobs:
python -m pip install . python -m pip install .
python -m pip install pytest bottle python -m pip install pytest bottle
- name: Get npm cache dir - name: Get npm cache dir
id: npm-cache id: npm-cache
run: | run: |
@ -91,10 +90,9 @@ jobs:
- name: Install npm requirements - name: Install npm requirements
run: | run: |
npm install npm install
echo "::set-env name=SINGLEFILE_BINARY::$GITHUB_WORKSPACE/node_modules/.bin/single-file" echo "SINGLEFILE_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/single-file" >> $GITHUB_ENV
echo "::set-env name=READABILITY_BINARY::$GITHUB_WORKSPACE/node_modules/.bin/readability-extractor" echo "READABILITY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/readability-extractor" >> $GITHUB_ENV
echo "::set-env name=MERCURY_BINARY::$GITHUB_WORKSPACE/node_modules/.bin/mercury-parser" echo "MERCURY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/mercury-parser" >> $GITHUB_ENV
### Run the tests ### Run the tests
- name: Directory listing for debugging - name: Directory listing for debugging