-
Notifications
You must be signed in to change notification settings - Fork 23
60 lines (50 loc) · 1.49 KB
/
publish-to-openvsx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Publish to Open VSX Marketplace
on:
workflow_dispatch:
inputs:
version:
description: "Release tag"
required: true
type: string
release:
types: [published]
jobs:
publish-to-openvsx:
runs-on:
group: databricks-deco-testing-runner-group
labels: ubuntu-latest-deco
environment: Production
steps:
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Download release
run: |
set x
echo Version: ${{ github.event.inputs.version }}
echo REF: ${{ github.ref }}
TAG=${{ github.event.inputs.version }}
if [[ ! -z "${{ github.event.inputs.version }}" ]]; then
TAG=${{ github.event.inputs.version }}
elif [[ "${{ github.ref }}" == refs/tags/* ]]; then
TAG=$(echo ${{ github.ref }} | sed -e "s|^refs/tags/||")
else
exit 1
fi
echo Tag: $TAG
gh release download $TAG -R databricks/databricks-vscode
ls -lR
echo "TAG=$TAG" >> $GITHUB_ENV
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install vcse
run: npm install -g @vscode/vsce
- name: Install ovsx
run: npm install -g ovsx
- name: Publish to Open VSX
run: |
ovsx verify-pat databricks
ovsx publish --packagePath databricks-*.vsix
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}