diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index 5418329..87be44f 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -15,10 +15,12 @@ jobs: - run: npm ci - name: Publish to Open VSX Registry uses: HaaLeo/publish-vscode-extension@v1 + id: publishToOpenVSX with: pat: ${{ secrets.OPEN_VSX_TOKEN }} - name: Publish to Visual Studio Marketplace uses: HaaLeo/publish-vscode-extension@v1 with: - pat: ${{ secrets.VSCE_TOKEN }} + pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} registryUrl: https://marketplace.visualstudio.com + extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 246334a..96ea7eb 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/-0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.9.1] - 2023-12-11 + +### Fixed + +- The GitHub Action for publishing the extension to the marketplace is failing for the step for the VS Code Marketplace. It may be that I am in Turkiye and some URL is blocked! Regardless, now it bundles the extension once and use that bundled extension to publish to both marketplaces. + ## [1.9.0] - 2023-12-11 ### Changed diff --git a/package.json b/package.json index d202002..c8e8e39 100755 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "description": "Perform file actions quickly with keyboard-driven file selection. 🐰⌨️", "icon": "img/logo.png", - "version": "1.9.0", + "version": "1.9.1", "engines": { "vscode": "^1.46.0", "node": ">=12"