From 1c39427dd4a942ba05a3895068e836f6da1c1d73 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 9 Jul 2021 16:14:35 +0100 Subject: [PATCH] Use HTTPS auth for repo packages --- .github/workflows/wasm.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 29875f134..4889283af 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -36,6 +36,11 @@ jobs: restore-keys: | ${{ runner.os }}-node- + - name: Reconfigure Git to use HTTPS auth for repo packages + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ + - name: Install test dependencies working-directory: ./test/wasm run: npm ci