Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/chocolatey #2229

Merged
merged 15 commits into from
Mar 21, 2023
4 changes: 1 addition & 3 deletions .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,7 @@ jobs:
cd scripts/choco
choco pack

choco apikey --key $CHOCOLATEY_API_KEY --source $CHOCOLATEY_REPO
choco push tracetest.$PACKAGE_VERSION.nupkg --source $CHOCOLATEY_REPO
choco push --source https://chocolatey.kubeshop.io/chocolatey --api-key $env:CHOCOLATEY_API_KEY tracetest.$env:PACKAGE_VERSION.nupkg
env:
CHOCOLATEY_API_KEY: ${{ secrets.COMMOM_CHOCO_API_KEY }}
CHOCOLATEY_REPO: ${{ secrets.CHOCOLATEY_REPO }}
PACKAGE_VERSION: ${{ steps.cliDownload.outputs.version }}
4 changes: 2 additions & 2 deletions docs/src/components/GtagInstallCliTabs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ export default function GtagInstallCliTabs() {
language="bash"
title="Terminal"
>
{`choco source add --name=kubeshop_repo --source=https://chocolatey.kubeshop.io/chocolatey & choco install tracetest`}
{`choco source add --name=kubeshop_repo --source=https://chocolatey.kubeshop.io/chocolatey ; choco install tracetest`}
</CodeBlock>
</div>
</TabItem>
</Tabs>
);
};
};