From 49762c143f8085b12cfaa7ba3be016d3a8870c53 Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Wed, 29 Nov 2023 14:40:41 +0000 Subject: [PATCH] Update .github/workflows/npm.yaml --- .github/workflows/npm.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm.yaml b/.github/workflows/npm.yaml index b21d478..39cbf39 100644 --- a/.github/workflows/npm.yaml +++ b/.github/workflows/npm.yaml @@ -16,7 +16,7 @@ on: type: string required: false description: Path to any artifacts you wish uploaded - default: '' + default: false artifact_name: type: string required: false @@ -43,11 +43,11 @@ jobs: working-directory: ${{inputs.path}} - name: Artifact Name - if: ${{inputs.artifacts}} != '' + if: ${{inputs.artifacts}} != 'false' run: echo "ARTIFACTS=$(echo ${{inputs.artifact_name}} | sed s%/%_% )" >> $GITHUB_ENV - name: Upload Artifacts - if: ${{inputs.artifacts}} != '' + if: ${{inputs.artifacts}} != 'false' uses: actions/upload-artifact@v3 with: name: ${{env.ARTIFACTS}}