π Publish to Marketplace #56
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
# This is a basic workflow that is manually triggered | |
name: ' π Publish to Marketplace' | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: The release TAG to publish. i.e. `v2.3.0` | |
required: true | |
default: 'v2.3.0' | |
workflow_call: | |
inputs: | |
ref: | |
type: string | |
required: true | |
secrets: | |
OVSX_TOKEN: | |
required: true | |
VSCE_TOKEN: | |
required: true | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.ref }} | |
- name: Get Package Version | |
id: version | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const fs = require('fs'); | |
const manifest = JSON.parse(fs.readFileSync('package.json', 'utf8')); | |
const version = manifest.version; | |
core.setOutput('version', version); | |
- name: Display Info | |
uses: streetsidesoftware/actions/public/summary@v1 | |
with: | |
text: | | |
# Package Info | |
ref: ${{ inputs.ref }} | |
version: `${{ steps.version.outputs.version }}` | |
- name: Test Exit | |
run: | | |
echo "::error title=Test::This is a test error" | |
exit 1 | |
- name: Install | |
run: | | |
npm install | |
npm run build | |
- name: Build Extension .vsix | |
run: npm run package-extension | |
- name: Publish VSCE | |
run: > | |
find ./build -name "*.vsix" | xargs npx vsce publish --skip-duplicate -p ${{ secrets.VSCE_TOKEN }} --packagePath | |
|| echo "PUB_FAIL_VSCE=true" >> $GITHUB_ENV | |
- name: Check Publish Result VSCE | |
if: ${{ env.PUB_FAIL_VSCE }} | |
run: echo "::error title=VSCE::Failed to Publish to VS Code Marketplace." | |
- name: Publish OVSX | |
run: > | |
find ./build -name "*.vsix" | xargs npx ovsx publish --skip-duplicate -p ${{ secrets.OVSX_TOKEN }} | |
|| echo "PUB_FAIL_OVSX=true" >> $GITHUB_ENV | |
- name: Check Publish Result OVSX | |
if: ${{ env.PUB_FAIL_OVSX }} | |
run: echo "::error title=OVSX::Failed to Publish to Eclipse Open VSX." | |
- name: Check Build | |
if: ${{ env.PUB_FAIL_VSCE || env.PUB_FAIL_OVSX }} | |
run: exit 1 | |
# cspell:ignore vsix xargs OVSX |