diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42ce7e66..ea480024 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,11 @@ jobs: echo "ADMIN_CACHE_KEY=$(git submodule status ./admin)" >> $GITHUB_ENV echo "FRONT_CACHE_KEY=$(git submodule status ./front)" >> $GITHUB_ENV + - name: Reconfigure git to use HTTP authentication + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ + - name: Cache admin id: cache-admin uses: actions/cache@v3 diff --git a/.github/workflows/update_cache.yml b/.github/workflows/update_cache.yml index 4b62f20d..bc880e89 100644 --- a/.github/workflows/update_cache.yml +++ b/.github/workflows/update_cache.yml @@ -27,6 +27,11 @@ jobs: path: ./admin/build key: admin-${{ env.ADMIN_CACHE_KEY }} + - name: Reconfigure git to use HTTP authentication + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ + - name: Setup node for admin if: steps.cache-admin.outputs.cache-hit != 'true' uses: actions/setup-node@v3