From 723a0f67dd82fead6d41ff23c7a1c4d2ebf98ebc Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Sun, 7 Jan 2024 21:55:05 +0000 Subject: [PATCH] Update npm/publish/action.yaml --- npm/publish/action.yaml | 66 ++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/npm/publish/action.yaml b/npm/publish/action.yaml index 9bb8bd8..c72174e 100644 --- a/npm/publish/action.yaml +++ b/npm/publish/action.yaml @@ -1,33 +1,33 @@ -name: NPM Publish -description: Push to registry - -inputs: - owner: - type: string - required: false - description: Owner to publish to - default: ${{github.repository_owner}} - registry: - type: string - required: false - description: NPM registry FQDM - default: ${{github.server_url}}/api/packages/${{inputs.owner}}/npm/ - token: - type: string - required: false - description: Access Token - default: ${{secrets.DEPLOY_TOKEN}} - branch: - type: string - required: false - description: Only publish for branch - default: develop - -runs: - using: composite - steps: - - name: Publish - if: ${{github.ref_name}} == ${{inputs.branch}} - uses: docker://node - with: - args: /bin/bash -c 'npm config set registry ${{inputs.registry}} && npm config set -- $(echo ${{inputs.registry}} | sed s%http:%% | sed s%https:%% ):_authToken "${{inputs.token}}" && npm publish || echo Already published...' +name: NPM Publish +description: Push to registry + +inputs: + owner: + type: string + required: false + description: Owner to publish to + default: ${{github.repository_owner}} + registry: + type: string + required: false + description: NPM registry FQDM + default: ${{github.server_url}}/api/packages/${{inputs.owner}}/npm/ + token: + type: string + required: false + description: Access Token + default: ${{secrets.DEPLOY_TOKEN}} + branch: + type: string + required: false + description: Only publish for branch + default: develop + +runs: + using: composite + steps: + - name: Publish + if: ${{github.ref_name}} == ${{inputs.branch}} + uses: docker://node + with: + args: /bin/bash -c 'npm set registry ${{inputs.registry}} && npm set $(echo ${{inputs.registry}} | sed s%http:%% | sed s%https:%% ):_authToken "${{inputs.token}}" && npm publish || echo Already published...'