Skip to content

Commit

Permalink
chore(pipeline): Fix pushing cleanup commit (#44)
Browse files Browse the repository at this point in the history
* chore(pipeline): Fix pushing cleanup commit
  • Loading branch information
tverhoken authored Dec 15, 2020
1 parent 6d4a0b0 commit e880315
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ jobs:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
with:
token: '${{ secrets.ACTIONS_TOKEN }}'
- name: Configure CI Git User
run: |
git config --global user.name '@pipeline'
git config --global user.email 'pipeline@users.noreply.github.com'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand Down Expand Up @@ -177,9 +183,6 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
token: '${{ secrets.ACTIONS_TOKEN }}'
- run: npm ci
- run: npm run release
- uses: JS-DevTools/npm-publish@v1
Expand Down

0 comments on commit e880315

Please sign in to comment.