Skip to content

Commit 3e24e5c

Browse files
authored
Merge pull request #74 from GitGuardian/agateau/prepare-release
Prepare release
2 parents e99b365 + 66ff830 commit 3e24e5c

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: vsixbuilder
22

33
on:
4+
pull_request:
45
push:
5-
branches: [main]
6+
branches:
7+
- "main"
8+
tags:
9+
- "v*"
610

711
permissions:
812
contents: read
@@ -28,10 +32,9 @@ jobs:
2832
- name: Build extension
2933
run: |
3034
vsce package --baseContentUrl https://github.com/GitGuardian/gitguardian-vscode/ --allow-missing-repository
31-
mv *.vsix gitguardian-vscode.vsix
3235
3336
- name: Upload extension package
3437
uses: actions/upload-artifact@v4
3538
with:
36-
name: gitguardian-vscode.vsix
37-
path: gitguardian-vscode.vsix
39+
name: gitguardian.vsix
40+
path: gitguardian-*.vsix

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ yarn-error.log*
2424

2525
.eslintcache
2626

27-
# jetbrains tools
27+
# IDE
2828
.idea
29+
.vscode/*
30+
!.vscode/settings.json.default
31+
!.vscode/tasks.json
32+
!.vscode/launch.json
33+
!.vscode/extensions.json
34+
!.vscode/*.code-snippets
2935

3036
# TypeScript cache
3137
tsconfig.base.tsbuildinfo%

.vscode/settings.json renamed to .vscode/settings.json.default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"out": true // set this to false to include "out" folder in search results
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10-
"typescript.tsc.autoDetect": "off"
10+
"typescript.tsc.autoDetect": "off",
1111
}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# GitGuardian Secret Security Changelog
22

3+
## [0.8.0]
4+
5+
### Changed
6+
7+
- Updated to [ggshield 1.37.0](https://github.com/GitGuardian/ggshield/releases/v1.37.0).
8+
- ggshield binaries are no longer bundled in the extension, the correct binary is downloaded at startup. This makes the extension much lighter while still not requiring installing ggshield manually.
9+
310
## [0.7.0]
411

5-
### Added
12+
### Changed
613

714
- Updated to [ggshield 1.36.0](https://github.com/GitGuardian/ggshield/releases/v1.36.0).
815

ggshield_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.0
1+
1.37.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "GitGuardian - Secrets Security",
55
"description": "A safety net to help developers safeguard their sensitive information (passwords, API key, tokens, ..) from accidental leaks in their code",
66
"icon": "images/icon.png",
7-
"version": "0.7.0",
7+
"version": "0.8.0",
88
"publisher": "gitguardian-secret-security",
99
"engines": {
1010
"vscode": "^1.81.0"

0 commit comments

Comments
 (0)