Skip to content

Commit

Permalink
ci: changed to private deploy token
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftwork committed Dec 28, 2019
1 parent 92535de commit c293191
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies as CI
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.DEPLOY_TOKEN }}

- name: Run tests on packages
run: npm test
Expand All @@ -45,9 +45,9 @@ jobs:
- name: Publish public packages
run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.DEPLOY_TOKEN }}

- name: Deploy documentation package to GitHub Pages
run: npm run docs:deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}

0 comments on commit c293191

Please sign in to comment.