Skip to content

feat: Trivy issues in the Problems view (#74) #47

feat: Trivy issues in the Problems view (#74)

feat: Trivy issues in the Problems view (#74) #47

Workflow file for this run

on:
push:
tags:
- "*"
name: Deploy Extension
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Set release version
run: |
VERSION=${GITHUB_REF#refs/*/}
jq --arg version "$VERSION" '.version = $version' package.json > tmp.json && mv tmp.json package.json
- name: Install npm dependencies
run: npm install
- name: Publish
uses: lannonbr/vsce-action@4.0.0
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}