Skip to content

Commit 1d17796

Browse files
committed
Revert "Utvidet publish kommandoen rundt logging, inkludert loglevel"
This reverts commit 287cca4.
1 parent bd0ea12 commit 1d17796

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/actions/publishArtifact/action.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ inputs:
44
nodeToken:
55
description: "A Github PAT"
66
required: true
7-
devhub:
8-
description: "The devhub alias"
9-
required: true
107

118
runs:
129
using: composite
@@ -15,12 +12,9 @@ runs:
1512
shell: bash
1613
run: |
1714
if [ -d "artifacts" ] && [ -n "$(ls -A artifacts)" ]; then
18-
sfp publish --artifactdir artifacts --npm --scope @${SCOPE} --devhubalias ${DEVHUB_ALIAS} --loglevel ${SFP_LOG_LEVEL} --gittag --pushgittag --logsgroupsymbol ::group::,::endgroup::
15+
sfp publish --artifactdir artifacts --npm --scope @${{ github.repository_owner }} --gittag --pushgittag
1916
else
2017
echo "No artifacts to publish"
2118
fi
2219
env:
2320
NODE_AUTH_TOKEN: ${{ inputs.nodeToken }}
24-
DEVHUB_ALIAS: ${{ inputs.devhub }}
25-
SFP_LOG_LEVEL: ${{ vars.SFP_LOG_LEVEL }}
26-
SCOPE: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)