From ff32fbb4bdf1cb184b7b5d7212608318dd7d2a94 Mon Sep 17 00:00:00 2001 From: Mathieu Bellon Date: Tue, 10 Sep 2024 12:12:03 +0200 Subject: [PATCH] refactor: Update VSCE package command in GitHub Actions workflow --- .github/workflows/build.yaml | 2 +- .gitignore | 5 ++++- SUPPORT.md | 6 ++++++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 SUPPORT.md diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2a73162..640fbcf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,7 +27,7 @@ jobs: - name: Build extension run: | - vsce package + vsce package --baseContentUrl https://github.com/GitGuardian/gitguardian-vscode/ --allow-missing-repository mv *.vsix gitguardian-vscode.vsix - name: Upload extension package diff --git a/.gitignore b/.gitignore index 29d36a5..5ffd0f8 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,7 @@ yarn-error.log* tsconfig.base.tsbuildinfo% # ouput dir -out/ \ No newline at end of file +out/ + +# build files +**/*.vsix \ No newline at end of file diff --git a/SUPPORT.md b/SUPPORT.md new file mode 100644 index 0000000..c3f06ca --- /dev/null +++ b/SUPPORT.md @@ -0,0 +1,6 @@ +# Support + +If you have a question or need help you can reach out to us via : + +- The [issue tracker](https://github.com/GitGuardian/gitguardian-vscode/issues) if you found a bug, do not understand something, etc .. +- or the [Discussion tab](https://github.com/GitGuardian/gitguardian-vscode/discussions) where you can open a new thread for a feature idea or anything else \ No newline at end of file