mirror of https://github.com/embarklabs/embark.git
ci: adjust Nightlies/release job so NPM credentials are always removed
That is, the file `${HOME}/.npmrc` will be deleted by the "Remove NPM credentials" step even if a previous step failed.
This commit is contained in:
parent
c98e769d0d
commit
0ca8635538
|
@ -75,6 +75,7 @@ jobs:
|
|||
# EMBARKBOT_NPM_TOKEN should correspond to https://www.npmjs.com/~embarkbot
|
||||
NPM_TOKEN: ${{ secrets.EMBARKBOT_NPM_TOKEN }}
|
||||
- name: Remove NPM credentials
|
||||
if: always()
|
||||
# Delete .npmrc instead of running `npm logout` because the logout command permanently invalidates the current token
|
||||
run: |
|
||||
rm ${HOME}/.npmrc
|
||||
rm -f ${HOME}/.npmrc
|
||||
|
|
Loading…
Reference in New Issue