diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index 859c342..0000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: 1 -update_configs: - - package_manager: "javascript" - directory: "/" - update_schedule: "weekly" - allowed_updates: - - match: - update_type: "security" - ignored_updates: - - match: - dependency_name: "@octokit/rest" - commit_message: - prefix: 'chore' - include_scope: true diff --git a/.github/workflows/vsce-publish.yml b/.github/workflows/vsce-publish.yml index ef60690..9808e41 100644 --- a/.github/workflows/vsce-publish.yml +++ b/.github/workflows/vsce-publish.yml @@ -7,10 +7,21 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: npm install - - uses: lannonbr/vsce-action@3.0.0 + - uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v3 with: - args: "publish -p $VSCE_TOKEN" - env: - VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }} + node-version: 20 + + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: true + + - name: Install vsce + run: npm install --global @vscode/vsce + + - name: Publish + run: vsce publish -p ${{ secrets.VSCE_TOKEN }} diff --git a/README.md b/README.md index 6d73c50..4011f45 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Issue Blog -[![Version](https://vsmarketplacebadge.apphb.com/version/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog) -[![Installs](https://vsmarketplacebadge.apphb.com/installs/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog) -[![Ratings](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg)](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg) -[![Build Status](https://travis-ci.org/whyour/issue-blog.svg?branch=master)](https://travis-ci.org/whyour/issue-blog) +[![Version](https://vsmarketplacebadges.dev/version/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog) +[![Installs](https://vsmarketplacebadges.dev/installs/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog) +[![Ratings](https://vsmarketplacebadges.dev/rating/whyour.issue-blog.svg)](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg) +[![Build Status](https://travis-ci.com/whyour/issue-blog.svg?branch=master)](https://travis-ci.org/whyour/issue-blog) ## 安装 issue-blog 插件 diff --git a/package.json b/package.json index f71abf0..1124994 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ ], "icon": "resource/images/blogger.png", "description": "A vscode plugin to create a blog with issue", - "version": "1.0.3", + "version": "1.1.0", "publisher": "whyour", "repository": { "url": "https://github.com/whyour/issue-blog",