From 8a5f9c13f9b463563c65c4c71f050aad6e1e5a50 Mon Sep 17 00:00:00 2001 From: Vladimir Sigalkin Date: Mon, 24 Jan 2022 14:25:05 +0300 Subject: [PATCH] fix(ci): added self-hosted npm mirror --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c354ed5..1011b50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,3 +60,9 @@ jobs: run: | git tag $UPM_TAG upm git push origin --tags + - uses: actions/setup-node@v2 + with: + registry-url: 'https://npm.iron-wall.org' + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}