ci: fix issue with `set-env` usage (#4964)

translation-badges
Ein Verne 2020-11-18 19:54:26 +08:00 committed by GitHub
parent f8d18031eb
commit 1491a6cb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ jobs:
- name: Set up PR environment
if: github.event.number != null
run: echo "::set-env name=PULL_REQUEST_ID::${{ github.event.number }}"
run: echo "PULL_REQUEST_ID=${{ github.event.number }}" >> $GITHUB_ENV
- name: Install npm dependencies
run: npm ci