-
Notifications
You must be signed in to change notification settings - Fork 9
62 lines (52 loc) · 1.49 KB
/
release.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
name: SQFLint-VSCode CI Release
on:
push:
tags:
- '*.*.*'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: client
steps:
- name: Checkout
uses: actions/checkout@v2
# SQFLint build disabled for now
# with:
# submodules: 'recursive'
#- name: Build SQFLint with Docker image
# uses: ./sqflint/.github/actions/sqflint-build-action
# env:
# ANT_BUILD_DIR: sqflint
- name: Use Node.js 14.19.1
uses: actions/setup-node@v3
with:
node-version: 14.19.1
cache: npm
- run: npm install -g npm@latest
- run: npm run package
- name: Store vsix
uses: actions/upload-artifact@v2
with:
name: sqflint
path: client/sqflint-*.vsix
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: publish
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: |
npx vsce publish -p $VSCE_TOKEN ${{ steps.get_version.outputs.VERSION }}