Skip to content

Update build action versions #79

Update build action versions

Update build action versions #79

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'
- run: npm run package
- uses: svenstaro/upload-release-action@2.2.1
if: |
matrix.os == 'ubuntu-latest' &&
startsWith(github.ref, 'refs/tags/v')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "*.vsix"
file_glob: true
tag: ${{ github.ref }}
#- name: Publish
# if: success() && startsWith( github.ref, 'refs/tags/releases/') && matrix.os == 'ubuntu-latest'
# run: npm run deploy
# env:
# VSCE_PAT: ${{ secrets.VSCE_PAT }}