Update .github/workflows/npm.yaml

This commit is contained in:
Zakary Timson 2023-11-24 17:23:06 +00:00
parent 7bd5f9b71a
commit 00437ea654

View File

@ -16,6 +16,10 @@ on:
type: string type: string
required: false required: false
description: Path to any artifacts you wish uploaded description: Path to any artifacts you wish uploaded
artifact_name:
type: string
required: false
description: Change artifact name
jobs: jobs:
docker: docker:
@ -40,5 +44,5 @@ jobs:
if: ${{inputs.artifacts}} != '' if: ${{inputs.artifacts}} != ''
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ${{inputs.artifacts}} name: ${{inputs.artifact_name}} || $(echo "${{inputs.artifacts}}" | sed s%/%_%)
path: ${{inputs.artifacts}} path: ${{inputs.artifacts}}