Skip to content

Commit

Permalink
Try to enforce npm registry
Browse files Browse the repository at this point in the history
It has been unstable to download the dpl-design-system during the Github
workfloww that creates releases on branch changes.
This seems to be, at least temporary, a fix.
  • Loading branch information
spaceo committed Jan 14, 2024
1 parent 2781c91 commit 6b11b0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-release-on-branch-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
cache: 'yarn'
registry-url: 'https://npm.pkg.github.com'

- run: yarn install --frozen-lockfile
- name: Install dependencies
run: |
yarn config set registry https://npm.pkg.github.com
yarn install --frozen-lockfile
- name: Build artifacts
run: yarn build
Expand Down

0 comments on commit 6b11b0e

Please sign in to comment.