File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - main
7- release :
8- types : [published]
7+ workflow_call :
98
109permissions :
1110 contents : read
Original file line number Diff line number Diff line change 1+ name : Release Workflow
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ permissions :
9+ contents : write
10+ actions : read
11+ checks : write
12+
13+ jobs :
14+ release-build :
15+ uses : ./.github/workflows/build.yml
16+ secrets : inherit
17+
18+ release :
19+ runs-on : ubuntu-latest
20+ needs : release-build
21+ steps :
22+ - name : Download plugin artifact
23+ uses : actions/download-artifact@v4
24+ with :
25+ name : context-mapper-intellij-plugin
26+ path : ./plugin
27+ - name : Create GitHub release
28+ id : create_release
29+ uses : softprops/action-gh-release@v2
30+ with :
31+ files : ./plugin/context-mapper-intellij-plugin.zip
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ org.gradle.caching=true
77
88intelliJVersion =2024.1.7
99ideaSinceBuild =241
10- ideaUntilBuild =243 .*
10+ ideaUntilBuild =251 .*
1111
1212cmlVersion =6.12.0
1313lsp4ijVersion =0.12.0
You can’t perform that action at this time.
0 commit comments