Skip to content

Commit ffa79ef

Browse files
authored
Merge pull request #198 from nobodywasishere/nobody/update-release-ci
Fix release CI script + v0.3.1
2 parents da27e04 + 6c1c27d commit ffa79ef

File tree

3 files changed

+11
-16
lines changed

3 files changed

+11
-16
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,24 @@
1+
name: Publish Extension
12
on:
23
release:
34
types:
45
- released
56
workflow_dispatch:
67

7-
name: Publish Extension
88
jobs:
9-
deploy-open-vsx:
9+
publish:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v5
13-
- uses: actions/setup-node@v6
14-
with:
15-
node-version: 24
16-
- run: npm ci
13+
- run: yarn install --frozen-lockfile
1714
- name: Publish to Open VSX Registry
1815
uses: HaaLeo/publish-vscode-extension@v1
16+
id: publishToOpenVSX
1917
with:
2018
pat: ${{ secrets.OPEN_VSX_TOKEN }}
21-
deploy-vs-market:
22-
runs-on: ubuntu-latest
23-
steps:
24-
- uses: actions/checkout@v5
25-
- uses: actions/setup-node@v6
26-
with:
27-
node-version: 24
28-
- run: npm ci
2919
- name: Publish to Visual Studio Marketplace
30-
uses: HaaLeo/publish-vscode-extension@v1
20+
uses: HaaLeo/publish-vscode-extension@v2
3121
with:
3222
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
3323
registryUrl: https://marketplace.visualstudio.com
24+
extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.3.1] (2025-11-11)
2+
3+
* Fixes for publish CI script
4+
15
## [0.3.0] (2025-11-10)
26

37
* Add link to documentation by @nobodywasishere in https://github.com/crystal-ameba/vscode-crystal-ameba/pull/146

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "veelenga",
55
"icon": "assets/ameba.png",
66
"description": "Ameba extension for Visual Studio Code",
7-
"version": "0.3.0",
7+
"version": "0.3.1",
88
"license": "MIT",
99
"engines": {
1010
"vscode": "^1.75.0"

0 commit comments

Comments
 (0)