Skip to content

Commit 5474c5d

Browse files
authored
Merge pull request #24 from lstreckeisen/update-plugin-until
allow 2025 intellij build to install plugin
2 parents 6a920e5 + 80ab7fc commit 5474c5d

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ on:
44
push:
55
branches:
66
- main
7-
release:
8-
types: [published]
7+
workflow_call:
98

109
permissions:
1110
contents: read

.github/workflows/release.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ org.gradle.caching=true
77

88
intelliJVersion=2024.1.7
99
ideaSinceBuild=241
10-
ideaUntilBuild=243.*
10+
ideaUntilBuild=251.*
1111

1212
cmlVersion=6.12.0
1313
lsp4ijVersion=0.12.0

0 commit comments

Comments
 (0)