Skip to content

Commit 90d17a1

Browse files
committed
add release workflow
1 parent 154fe0a commit 90d17a1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Release Workflow
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release-build:
10+
uses: ./.github/workflows/build.yml
11+
secrets: inherit
12+
13+
release:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Download plugin artifact
17+
uses: actions/download-artifact@v4
18+
with:
19+
name: context-mapper-intellij-plugin
20+
path: ./plugin
21+
- name: Create GitHub release
22+
id: create_release
23+
uses: softprops/action-gh-release@v2
24+
with:
25+
files: ./plugin/context-mapper-intellij-plugin.zip

0 commit comments

Comments
 (0)