diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4207647..5e679a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,13 @@ name: Build on: - # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) - push: - branches: [main] - # Trigger the workflow on any pull request - pull_request: + workflow_dispatch +#on: +# # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) +# push: +# branches: [main] +# # Trigger the workflow on any pull request +# pull_request: jobs: diff --git a/gradle.properties b/gradle.properties index b392227..4822aa9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.ivyapps.composehammer pluginName = compose-hammer-m3-ui-builder pluginRepositoryUrl = https://github.com/ILIYANGERMANOV/compose-material3-helper-plugin # SemVer format -> https://semver.org -pluginVersion = 2023.05.30 +pluginVersion = 2023.06.19 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 221 diff --git a/scripts/buildPlugin.sh b/scripts/buildPlugin.sh new file mode 100755 index 0000000..79cfb24 --- /dev/null +++ b/scripts/buildPlugin.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +./gradlew buildPlugin || exit +cp build/distributions/* ~/Downloads/ || exit +echo "Build successful! Check ~/Downloads/ for the result." \ No newline at end of file