Fixed updating of the Template plugin name on cleanup

pull/9/head
Jakub Chrzanowski 4 years ago
parent 40533689f0
commit 895b7602b2

@ -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

@ -39,8 +39,8 @@ jobs:
sed -i "s/%GROUP%/$GROUP/g" .github/template-cleanup/*
# 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/Template/$NAME/g" {} +
find src -type f -exec sed -i "s/JetBrains/$ACTOR/g" {} +
# Remove lines marked with #REMOVE-ON-CLEANUP#

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

Loading…
Cancel
Save