From 585ee618b54e993ec86a9561af99400def3843d6 Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sun, 11 Jun 2023 21:03:56 +0200 Subject: [PATCH 1/6] ci: update vsce package name --- .github/workflows/publish-extension.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-extension.yaml b/.github/workflows/publish-extension.yaml index 38667d4..1dec1ba 100644 --- a/.github/workflows/publish-extension.yaml +++ b/.github/workflows/publish-extension.yaml @@ -1,4 +1,4 @@ -# Taken from: https://github.com/microsoft/vscode-platform-specific-sample/blob/main/.github/workflows/ci.yml +# Adapted from: https://github.com/microsoft/vscode-platform-specific-sample/blob/main/.github/workflows/ci.yml name: CI on: push: @@ -61,7 +61,7 @@ jobs: - name: Publish shell: pwsh run: echo "target=${{ matrix.platform }}-${{ matrix.arch }}" >> $env:GITHUB_ENV - - run: npx vsce package --target ${{ env.target }} + - run: npx @vscode/vsce package --target ${{ env.target }} - name: Upload .vsix to GitHub uses: actions/upload-artifact@v2 with: @@ -74,6 +74,6 @@ jobs: if: success() && startsWith( github.ref, 'refs/tags/') steps: - uses: actions/download-artifact@v2 - - run: npx vsce publish --packagePath $(find . -iname *.vsix) + - run: npx @vscode/vsce publish --packagePath $(find . -iname *.vsix) env: VSCE_PAT: ${{ secrets.VSCE_PAT }} From 0fa8136aad4b0866516c1929efe08d4973d9246b Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sun, 11 Jun 2023 21:07:08 +0200 Subject: [PATCH 2/6] ci: change branch condition to allow running in non-main branch --- .github/workflows/publish-extension.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-extension.yaml b/.github/workflows/publish-extension.yaml index 1dec1ba..265b1e3 100644 --- a/.github/workflows/publish-extension.yaml +++ b/.github/workflows/publish-extension.yaml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - main + - "*" tags: - "*" From 7ac152df99ec1064d825f3a5bf8adf5bc9ebfe13 Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sun, 11 Jun 2023 22:10:25 +0200 Subject: [PATCH 3/6] ci: try commenting out tag trigger --- .github/workflows/publish-extension.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-extension.yaml b/.github/workflows/publish-extension.yaml index 265b1e3..99dc125 100644 --- a/.github/workflows/publish-extension.yaml +++ b/.github/workflows/publish-extension.yaml @@ -4,8 +4,8 @@ on: push: branches: - "*" - tags: - - "*" + # tags: + # - "*" jobs: build: From fd19e0bcaed6485f1c0763f809dff04cdb560003 Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sat, 17 Jun 2023 23:43:53 +0200 Subject: [PATCH 4/6] ci: revert change to push trigger, change tag trigger --- .github/workflows/publish-extension.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-extension.yaml b/.github/workflows/publish-extension.yaml index 99dc125..63b7b86 100644 --- a/.github/workflows/publish-extension.yaml +++ b/.github/workflows/publish-extension.yaml @@ -3,9 +3,9 @@ name: CI on: push: branches: - - "*" - # tags: - # - "*" + - "main" + tags: + - "*v" jobs: build: From 39b0bd22be24d6442a371c6c923b393033a0116f Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sat, 17 Jun 2023 23:54:05 +0200 Subject: [PATCH 5/6] fix: update readme badge provider --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4764966..618c8c2 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Monokai Dimmed+Vibrant -[![Version Badge](https://vsmarketplacebadges.dev/version/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) -[![Installs badge](https://vsmarketplacebadges.dev/installs/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) -[![Downloads badge](https://vsmarketplacebadges.dev/downloads/alexravenna.monokai-dimmed-vibrant.svg)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) +[![Version Badge](https://img.shields.io/visual-studio-marketplace/v/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) +[![Installs badge](https://img.shields.io/visual-studio-marketplace/i/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) +[![Downloads badge](https://img.shields.io/visual-studio-marketplace/d/alexravenna.monokai-dimmed-vibrant)](https://marketplace.visualstudio.com/items?itemName=alexravenna.monokai-dimmed-vibrant) ![Screenshot](screenshot.png) From 133eba8863db2940df814cf40529e7e99ce1e93a Mon Sep 17 00:00:00 2001 From: alexravenna Date: Sat, 17 Jun 2023 23:55:17 +0200 Subject: [PATCH 6/6] chore: bump to version 1.0.3 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff2ed79..5cdaad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Structured according to [Keep a Changelog](http://keepachangelog.com/). +## [1.0.3] - 2023-06-17 + +### Fixed + +- Fix publishing Action by changing readme badge provider + ## [1.0.2] - 2023-06-10 ### Fixed diff --git a/package.json b/package.json index dd0bfec..55cf55b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "monokai-dimmed-vibrant", "displayName": "Monokai Dimmed+Vibrant", "description": "A color theme based on the gray-tone editor colors of Monokai Dimmed and the vibrant text colors of Monokai Vibrant", - "version": "1.0.2", + "version": "1.0.3", "engines": { "vscode": "^1.79.0" },