Skip to content

Update actions/checkout action to v4 (#15) #7

Update actions/checkout action to v4 (#15)

Update actions/checkout action to v4 (#15) #7

Workflow file for this run

on:
push:
branches:
- main
name: Publish Extension
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
with:
fetch-depth: 0
- name: Automatic GitHub Release
uses: justincy/github-action-npm-release@2.0.2
id: release
- name: Publish
uses: lannonbr/vsce-action@3.0.0
if: steps.release.outputs.released == 'true'
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}