From f29fa4bbaf71447d74a881473beeae1e5e099c02 Mon Sep 17 00:00:00 2001 From: geekymon2 Date: Mon, 18 May 2026 18:52:46 +1000 Subject: [PATCH 1/5] updated workdlows --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b8abe0..10b7670 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: npm - name: Install dependencies run: npm ci diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3f902dd..71a46c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish Extension on: push: branches: - - master + - develop jobs: publish: @@ -13,12 +13,23 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install dependencies - run: npm ci + run: | + npm ci + npm install -g @vscode/vsce + + - name: List packaged files + run: npx vsce ls + + - name: Version bump + run: | + npm version patch + git push + git push --tags - name: Publish to VS Code Marketplace - run: npx vsce publish + run: npx vsce publish patch env: VSCE_PAT: ${{ secrets.VSCE_PAT }} From 5256a09745ee6e0bb842acaffb8661e747b39982 Mon Sep 17 00:00:00 2001 From: geekymon2 Date: Mon, 18 May 2026 18:56:41 +1000 Subject: [PATCH 2/5] updated package --- .github/workflows/publish.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 71a46c9..07a4262 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,11 @@ jobs: - name: List packaged files run: npx vsce ls + - name: Configure Git + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + - name: Version bump run: | npm version patch From 4ec81fb69fbfa9f929ea825dd0aba7d9638c7715 Mon Sep 17 00:00:00 2001 From: geekymon2 Date: Mon, 18 May 2026 19:00:20 +1000 Subject: [PATCH 3/5] updated permissions --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 07a4262..eed7ff3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,6 +4,8 @@ on: push: branches: - develop +permissions: + contents: write jobs: publish: From c8199c0b1c7c8f1a78bef1e570912f98ef72afa1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 May 2026 09:00:47 +0000 Subject: [PATCH 4/5] 0.0.2 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d1b3190..463f772 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gops", - "version": "0.0.1", + "version": "0.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gops", - "version": "0.0.1", + "version": "0.0.2", "dependencies": { "simple-git": "^3.36.0" }, diff --git a/package.json b/package.json index a270e74..2ab2e20 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "gops", "displayName": "Gops - Visual Git Toolkit", "description": "Visual Git Toolkit for VS Code", - "version": "0.0.1", + "version": "0.0.2", "publisher": "codemanxdev", "repository": { "type": "git", From e3809362a01e4c7c96fd4e9cea4f971266d4b985 Mon Sep 17 00:00:00 2001 From: geekymon2 Date: Mon, 18 May 2026 19:04:49 +1000 Subject: [PATCH 5/5] changed back to master --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index eed7ff3..d9ca8ca 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish Extension on: push: branches: - - develop + - master permissions: contents: write