Skip to content

Commit

Permalink
FIX: versioning in publishing vsix
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Apr 17, 2024
1 parent c2916f0 commit 73a2204
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Save artifact
uses: actions/upload-artifact@v2
with:
name: script-sync
name: script-sync-vsix
path: VSCode/scriptsync/*.vsix

publish_vsix:
Expand All @@ -136,6 +136,19 @@ jobs:
with:
node-version: '14'

- name: Python setup
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install pip and invoke
run: |
python -m pip install --upgrade pip
pip install invoke
- name: Sync version
run: invoke syncv

- name: Install VSCE
run: npm install -g vsce

Expand All @@ -151,7 +164,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: script-sync
name: script-sync-vsix
path: VSCode\scriptsync

- name: Publish to VSCode Marketplace
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: script-sync
version: 1.1.9
version: 1.1.10
authors:
- Andrea Settimi
description: Script-sync is a Rhino plug-in to run C# and Python (IronPython or CPython) in RhinoV8.
Expand Down

0 comments on commit 73a2204

Please sign in to comment.