Browse Source

Fixing Automated Web Deploy (#1082)

* switching back to npm install because duo_web_sdk is in the package-lock.json as an ssh url

* trying the workaround found in https://github.com/npm/cli/issues/2610

* adding in the jslib to see if that fixes the original problem. Removing the workaround to isolate the solution

* adding in back the workaround
pull/1120/head
Joseph Flinn 4 years ago committed by GitHub
parent
commit
392e29a371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/deploy.yml

3
.github/workflows/deploy.yml

@ -44,9 +44,12 @@ jobs: @@ -44,9 +44,12 @@ jobs:
run: |
git config user.name = "GitHub Action Bot"
git config user.email = "<>"
git config --global url."https://github.com/".insteadOf ssh://git@github.com/
git config --global url."https://".insteadOf ssh://
- name: Install and Build
run: |
npm run sub:init
npm ci
npm run dist

Loading…
Cancel
Save