updated publish steps
Some checks failed
Publish Library / Build NPM Project (push) Has started running
Publish Library / Tag Version (push) Has been cancelled
Publish Library / Publish CDN & Docs (push) Has been cancelled

This commit is contained in:
2025-08-10 12:48:24 -04:00
parent 503efc10fc
commit f0aa4b92c6

View File

@ -46,8 +46,24 @@ jobs:
docs:
name: Publish CDN & Docs
needs: build
uses: ztimson/actions/.github/workflows/docker.yaml@develop
with:
name: ztimson/node-utils
repository: ${{github.server_url}}/${{github.repository}}.git
pass: ${{secrets.DEPLOY_TOKEN}}
runs-on: ubuntu-latest
container:
image: node:22
volumes:
- /tmp/gitea:/tmp/gitea
steps:
- name: Publish Library
run: |
if [ "${{github.ref_name}}" = "master" ]; then
cd lib
REGISTRY="${{github.server_url}}/api/packages/${{github.repository_owner}}/npm/"
npm set registry "$REGISTRY"
npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.DEPLOY_TOKEN}}"
npm publish || echo "Failed to publish"
REGISTRY="https://registry.npmjs.org/"
npm set registry "$REGISTRY"
npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.NPM_TOKEN}}"
npm publish || echo "Failed to publish"
fi