Skip to content

Commit

Permalink
WIP-ADD: new vscode action
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Dec 28, 2023
1 parent c0f499f commit 10fee64
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/vscodeext.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: VSCodeExtension

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

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

- name: Build VSIX package
run: |
cd scriptsync/VSCode
npm install
vsce package
# - name: Upload VSIX package
# uses: actions/upload-artifact@v2
# with:
# name: VSCodeExtension
# path: scriptsync/VSCode/*.vsix

0 comments on commit 10fee64

Please sign in to comment.