Skip to content

Release the VS Code extension #15

Release the VS Code extension

Release the VS Code extension #15

name: Release the VS Code extension
on:
workflow_dispatch:
jobs:
release:
if: >
github.ref == 'refs/heads/trunk' && (
github.actor == 'adamziel' ||
github.actor == 'dmsnell' ||
github.actor == 'bgrgicak' ||
github.actor == 'sejas' ||
github.actor == 'danielbachchuber'
)
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
clean: true
fetch-depth: 0
persist-credentials: false
- name: Setup SSH Keys
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GH_DEPLOY_KEY }}
- name: Install VSCE toolkit
run: npm install -g @vscode/vsce
- name: Install dependencies
run: npm ci
- name: Bump version
run: |
cd packages/vscode-extension
git config --global user.name "deployment_bot"
git config --global user.email "[email protected]"
npm version patch -m "VSCode Extension: Version %s"
git push [email protected]:wordpress/playground-tools.git --follow-tags
- name: Publish to VS Code Marketplace
run: |
nx build vscode-extension
cd dist/packages/vscode-extension
vsce publish -p ${{ secrets.VSCODE_PERSONAL_ACCESS_TOKEN }}