-
Notifications
You must be signed in to change notification settings - Fork 8
76 lines (62 loc) · 2.11 KB
/
publish.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Publish Extension
on:
workflow_dispatch:
inputs:
releaseChannel:
description: "Release Channel"
required: true
type: choice
default: stable
options:
- stable
- edge
permissions: {}
jobs:
publish-latest-update-site:
name: Publish Latest Extension
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get Time for BUILD_ID
id: time
uses: nanzm/[email protected]
with:
format: "YYYYMMDD_HHmm"
- name: Get Branch name for BUILD_LABEL
id: branch_name
shell: bash
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
- name: Setup Node version
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: 📦 Install dependencies
run: |
npm ci
npm install -g vsce
- name: Download Bazel JDT Language Server extension
run: npx gulp download_server
- name: 🏗 Build project
env:
BUILD_ID: "${{ steps.time.outputs.time }}"
BUILD_TYPE: "S"
BUILD_LABEL: "CI ${{ steps.time.outputs.time }} (${{ steps.branch_name.outputs.branch }})"
run: npm run build
- name: 📦 Prepare packaging of pre-release extension
if: ${{ github.event.inputs.releaseChannel == 'edge' }}
run: npx gulp prepare_pre_release
- name: 🚀 Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
id: publishToVscMktp
with:
preRelease: ${{ github.event.inputs.releaseChannel == 'edge' && true || false }}
pat: ${{ secrets.VSC_MKTP_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
- name: 🚀 Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v1
with:
preRelease: ${{ github.event.inputs.releaseChannel == 'edge' && true || false }}
pat: ${{ secrets.OPEN_VSX_TOKEN }}
extensionFile: ${{ steps.publishToVscMktp.outputs.vsixPath }}