File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
.github/actions/publishArtifact Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 44 nodeToken :
55 description : " A Github PAT"
66 required : true
7+ devhub :
8+ description : " The devhub alias"
9+ required : true
710
811runs :
912 using : composite
1215 shell : bash
1316 run : |
1417 if [ -d "artifacts" ] && [ -n "$(ls -A artifacts)" ]; then
15- sfp publish --artifactdir artifacts --npm --scope @${{ github.repository_owner }} --gittag --pushgittag
18+ sfp publish --artifactdir artifacts --npm --scope @${SCOPE} --devhubalias ${DEVHUB_ALIAS} --loglevel ${SFP_LOG_LEVEL} --gittag --pushgittag --logsgroupsymbol ::group::,::endgroup::
1619 else
1720 echo "No artifacts to publish"
1821 fi
1922 env :
2023 NODE_AUTH_TOKEN : ${{ inputs.nodeToken }}
24+ DEVHUB_ALIAS : ${{ inputs.devhub }}
25+ SFP_LOG_LEVEL : ${{ vars.SFP_LOG_LEVEL }}
26+ SCOPE : ${{ github.repository_owner }}
You can’t perform that action at this time.
0 commit comments