We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6807d5 commit e325cacCopy full SHA for e325cac
.github/actions/authenticateOrg/action.yml
@@ -49,7 +49,7 @@ runs:
49
50
eval $command
51
52
- if [ $(jq .status loginResult.json) == 1 ];
+ if [ "$(jq .status loginResult.json)" == 1 ];
53
then
54
echo "::error title=Failed to authenticate::$(jq .message authResult.json)"
55
rm -f ./SFDX_URL.txt
.github/workflows/buildAndPublish.yml
@@ -23,7 +23,7 @@ jobs:
23
run: |
24
git config --global user.email "<>"
25
git config --global user.name "GitHub Action"
26
- git config --system --add safe.directory $GITHUB_WORKSPACE
+ git config --system --add safe.directory "$GITHUB_WORKSPACE"
27
28
- name: Authenticate node
29
uses: navikt/sf-platform/.github/actions/authenticateNode@main
0 commit comments