Skip to content

Commit 612a368

Browse files
Merge pull request #49 from raideer/feature/release-action
Feature/release action
2 parents 707aefa + f6bbce3 commit 612a368

File tree

4 files changed

+1084
-67
lines changed

4 files changed

+1084
-67
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Main
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
- name: Install
15+
run: npm install
16+
- name: Package
17+
run: npm run package-vsix
18+
- name: Release
19+
uses: softprops/action-gh-release@v2
20+
if: startsWith(github.ref, 'refs/tags/')
21+
with:
22+
files: '*.vsix'

0 commit comments

Comments
 (0)