Skip to content

Commit

Permalink
install deps during release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Jan 7, 2023
1 parent d67b376 commit 88d6dc1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
with:
ref: 'main'
fetch-depth: 0
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: npm ci
- name: NPM Setup
run: |
npm set registry "https://registry.npmjs.org/"
Expand All @@ -59,4 +61,4 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event.inputs.preRelease == 'yes' }}
if: ${{ github.event.inputs.preRelease == 'yes' }}

0 comments on commit 88d6dc1

Please sign in to comment.