Skip to content

Commit 8ee6c10

Browse files
committed
Upload snapshot artifact in Actions
1 parent d9902cd commit 8ee6c10

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/gradle.yml

+10
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,13 @@ jobs:
3030
- name: Build with Gradle
3131
run: ./gradlew build -PideaVersion=${IDEA_VERSION} -PkotlinVersion=${KOTLIN_VERSION}
3232
env: ${{ matrix.env }}
33+
34+
- name: Prepare distribution
35+
run: cd build/distributions && unzip -d tmp pebble-intellij-next-SNAPSHOT.zip
36+
37+
- name: Archive distribution artifact
38+
uses: actions/upload-artifact@v3
39+
with:
40+
name: "pebble-intellij-development"
41+
path: build/distributions/tmp
42+
if: matrix.env.IDEA_VERSION == 'IU-2022.2'

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,11 @@ follow this syntax:
5555
For code completion to work properly in the `type` attribute, your `.peb` files need to be placed
5656
under a [content root](https://www.jetbrains.com/help/idea/content-roots.html) (e.g. `src/main/resources`).
5757
Otherwise, classes defined in your own source files won't be suggested.
58+
59+
## Nightly builds
60+
61+
Snapshot builds are available as part of the Actions CI:
62+
* go to https://github.com/bjansen/pebble-intellij/actions
63+
* click on the latest build
64+
* scroll to the bottom of the page, under the `Artifacts` section click on `pebble-intellij-development`
65+
* this will download a zip file that can be installed in your IDE using [Install plugin from disk](https://www.jetbrains.com/help/idea/managing-plugins.html#install_plugin_from_disk)

src/main/resources/META-INF/plugin.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
<ul>
1414
<li>Automatically show the completion popup after typing `{%`</li>
1515
<li>Add support for built-in functions like `i18n` (<a href="https://github.com/bjansen/pebble-intellij/issues/163">#163</a>)</li>
16+
<li>Fixed incorrect closing of double quotes (<a href="https://github.com/bjansen/pebble-intellij/issues/176">#176</a>)</li>
1617
</ul>
1718
18-
Full changelog at https://github.com/bjansen/pebble-intellij/milestone/10?closed=1
19+
Full changelog at https://github.com/bjansen/pebble-intellij/milestone/12?closed=1
1920
]]></change-notes>
2021

2122
<!-- IDEA 2022.1 and later -->

0 commit comments

Comments
 (0)