Fixed updating of the Template plugin name on cleanup

This commit is contained in:
Jakub Chrzanowski 2020-06-26 13:22:18 +02:00
parent 40533689f0
commit 895b7602b2
3 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,12 @@
# IntelliJ Platform Artifacts Repositories
# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
pluginGroup = %GROUP%
pluginName = %NAME%
pluginVersion = 0.0.1
pluginSinceBuild = 193
pluginUntilBuild = 202
platformType = IC
platformVersion = 2019.3
platformDownloadSources = true

View File

@ -39,8 +39,8 @@ jobs:
sed -i "s/%GROUP%/$GROUP/g" .github/template-cleanup/* sed -i "s/%GROUP%/$GROUP/g" .github/template-cleanup/*
# Replace template package name in project files with $GROUP # Replace template package name in project files with $GROUP
sed -i "s/org.jetbrains.plugins.template/$GROUP/g" gradle.properties
find src -type f -exec sed -i "s/org.jetbrains.plugins.template/$GROUP/g" {} + find src -type f -exec sed -i "s/org.jetbrains.plugins.template/$GROUP/g" {} +
find src -type f -exec sed -i "s/Template/$NAME/g" {} +
find src -type f -exec sed -i "s/JetBrains/$ACTOR/g" {} + find src -type f -exec sed -i "s/JetBrains/$ACTOR/g" {} +
# Remove lines marked with #REMOVE-ON-CLEANUP# # Remove lines marked with #REMOVE-ON-CLEANUP#

View File

@ -3,6 +3,9 @@
# IntelliJ Platform Plugin Template Changelog # IntelliJ Platform Plugin Template Changelog
## [Unreleased] ## [Unreleased]
### Fixed
- GitHub Actions - Template Cleanup - fixed adding files to git
- Update Template plugin name on cleanup
## [0.1.0] ## [0.1.0]
### Added ### Added