Skip to content

Commit

Permalink
fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Brock Davis committed Mar 29, 2022
1 parent b413610 commit 4007ef4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ if [ -z "$STORAGE_ACCOUNT_NAME" ]; then
exit 1
fi

echo "Logging in..."
az login --service-principal --username ${{secrets.AZURE_CLIENT_ID}} --password ${{secrets.AZURE_SECRET}} --tenant ${{secrets.AZURE_TENANT_ID}}
echo "Installing dependencies..."
npm install

echo "Building site"
npm run build

echo "Install yarn"
echo "Logging in..."
az login --service-principal --username ${AZURE_CLIENT_ID} --password ${AZURE_SECRET} --tenant ${AZURE_TENANT_ID}

echo "Install dependencies"

Expand Down

0 comments on commit 4007ef4

Please sign in to comment.