Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Fix Github actions secret management
Browse files Browse the repository at this point in the history
  • Loading branch information
Venthe committed Oct 18, 2023
1 parent 2027406 commit b632559
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
name: On tag push
jobs:
github-release:
secrets: inherit
uses: ./.github/workflows/github-release.yml
deploy-to-marketplaces:
secrets: inherit
uses: ./.github/workflows/market-deploy.yml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist
node_modules
.vscode-test/
*.vsix
.idea/
2 changes: 1 addition & 1 deletion src/FauxpilotCompletionProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class FauxpilotCompletionProvider implements InlineCompletionItemProvider
if (!value.choices) {
return [];
}

// returns 0 elements if model is incorrect
let choice1Text = value.choices[0]?.text;
if (!choice1Text) {
Expand Down

0 comments on commit b632559

Please sign in to comment.