Skip to content

Commit d4631a0

Browse files
committed
v1.0.5-beta
1 parent 76cc422 commit d4631a0

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/upload-artifact@v2
8585
with:
8686
name: tests-result
87-
path: ${{ github.workspace }}/build/reports/tests
87+
path: ${{ github.workspace }}/${{ env.WORKING_DIRECTORY }}/build/reports/tests
8888

8989
# Cache Plugin Verifier IDEs
9090
- name: Setup Plugin Verifier IDEs Cache
@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/upload-artifact@v2
105105
with:
106106
name: pluginVerifier-result
107-
path: ${{ github.workspace }}/build/reports/pluginVerifier
107+
path: ${{ github.workspace }}/${{ env.WORKING_DIRECTORY }}/build/reports/pluginVerifier
108108

109109
# Prepare plugin archive content for creating artifact
110110
- name: Prepare Plugin Artifact
@@ -122,7 +122,7 @@ jobs:
122122
uses: actions/[email protected]
123123
with:
124124
name: ${{ steps.artifact.outputs.filename }}
125-
path: ./build/distributions/content/*/*
125+
path: ${{ github.workspace }}/${{ env.WORKING_DIRECTORY }}/build/distributions/content/*/*
126126

127127
# Prepare a draft release for GitHub Releases page for the manual verification
128128
# If accepted and published, release workflow would be triggered

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
env:
6666
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
6767
working-directory: ${{ env.WORKING_DIRECTORY }}
68-
run: ./gradlew publishPlugin
68+
run: ./gradlew clean publishPlugin
6969

7070
# Upload artifact as a release asset
7171
- name: Upload Release Asset

code4me-jetbrains-plugin/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@
33
# Code4Me Changelog
44

55
## [Unreleased]
6+
### Added
7+
- Changelog
8+
9+
### Fixed
10+
- Updated vendor

code4me-jetbrains-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pluginGroup = me.code4me.plugin
55
pluginName = Code4Me
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.0.4-beta
7+
pluginVersion = 1.0.5-beta
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<idea-plugin>
33
<id>me.code4me.plugin</id>
44
<name>Code4Me</name>
5-
<vendor>TU Delft Research Project</vendor>
5+
<vendor url="https://code4me.me"
6+
email="[email protected]">Code4Me</vendor>
67

78
<depends>com.intellij.modules.platform</depends>
89

0 commit comments

Comments
 (0)