Skip to content

Added command to create new resx file, update namespace and C# resour… #60

Added command to create new resx file, update namespace and C# resour…

Added command to create new resx file, update namespace and C# resour… #60

Workflow file for this run

name: Deploy CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
- name: Install vsce and open vsx
run: |
npm install -g @vscode/vsce
npm install -g ovsx
- name: yarn
run: yarn
- name: VSCE Publish
run: vsce publish -p $env:VSCE_PAT
env:
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}
- name: Open VSX Publish
run: npx ovsx publish -p $env:OPEN_VSX_PAT
env:
OPEN_VSX_PAT: ${{ secrets.OPENVSX }}