From 00050917239cb1a51ea7f698ac80b3182c9dbcb7 Mon Sep 17 00:00:00 2001 From: Vladimir Sigalkin Date: Mon, 24 Jan 2022 14:27:25 +0300 Subject: [PATCH] fix(ci): added self-hosted npm mirror --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebf700a..2eef4aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,4 +57,10 @@ jobs: UPM_TAG: upm/v${{ steps.semantic.outputs.new_release_version }} run: | git tag $UPM_TAG upm - git push origin --tags \ No newline at end of file + 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}}