This repository has been archived by the owner on May 30, 2024. It is now read-only.
v0.4.3 #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout | |
- uses: actions/setup-node@v3 | |
name: Use Node.js 18.x | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- name: 📦 Install dependencies | |
run: yarn --frozen-lockfile | |
# Stable releases | |
- name: Publish extension in the marketplace | |
if: "!github.event.release.prerelease" | |
run: | | |
yarn run package | |
node_modules/.bin/vsce publish --packagePath vscode-ruby-lsp.vsix | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
# Prereleases | |
- name: Package and publish prerelease extension in the marketplace | |
if: "github.event.release.prerelease" | |
run: | | |
yarn run package_prerelease | |
node_modules/.bin/vsce publish --pre-release --packagePath vscode-ruby-lsp.vsix | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} |