Skip to content

v0.1.13

v0.1.13 #38

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/setup-node@v4
with:
node-version: "20.16.0"
cache: "yarn"
- name: 📦 Install dependencies
run: yarn --frozen-lockfile
- name: 🔨 Package
run: yarn run package
- name: Publish extension in the marketplace
run: node_modules/.bin/vsce publish --packagePath vscode-shopify-ruby.vsix
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
- name: Publish extension on OpenVSX
run: |
yarn run package
node_modules/.bin/ovsx publish vscode-shopify-ruby.vsix -p ${{ secrets.OPENVSX_TOKEN }} --yarn