mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
* feat: provide schema for config based on cli version * fallback to latest release * enable commented code * get schema based on tauri-build version * change url * handle schema get request error * Update versioned-schema.md * Update extension.ts
19 lines
360 B
YAML
19 lines
360 B
YAML
on:
|
|
workflow_dispatch:
|
|
repository_dispatch:
|
|
types: [publish]
|
|
|
|
name: Publish Extension
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn
|
|
- uses: lannonbr/vsce-action@master
|
|
with:
|
|
args: "publish -p $VSCE_TOKEN"
|
|
env:
|
|
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
|