This is an automated email from the ASF dual-hosted git repository. danwatford pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release18.12 by this push: new 525ef139df Removed unnecessary steps when building docker image with plugins (OFBIZ-12876) 525ef139df is described below commit 525ef139df658c53e5c3ec58f053ae886ec038d5 Author: Daniel Watford <dan...@watfordconsulting.com> AuthorDate: Thu Feb 15 17:08:16 2024 +0000 Removed unnecessary steps when building docker image with plugins (OFBIZ-12876) --- .github/workflows/docker-image.yaml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index eacae7eb88..82fbc0f7f2 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -123,18 +123,8 @@ jobs: ############################################################################ # Build and push a container image of the OFBiz Framework plus Plugins, # without any data loaded. - # We need to use gradle to download sources as plugins might include an install - # task in their own build.gradle files. If the project drops support for plugins' - # install tasks then we can replace the JDK and gradle related steps below with - # a git checkout from the https://github.com/apache/ofbiz-plugins repository. - - name: Set up JDK 8 - uses: actions/setup-java@v3.6.0 - with: - java-version: 8 - distribution: temurin - cache: 'gradle' - - name: Grant execute permission for gradlew and pullAllPluginsSource.sh - run: chmod +x gradlew pullAllPluginsSource.sh + - name: Grant execute permission for pullAllPluginsSource.sh + run: chmod +x pullAllPluginsSource.sh - name: Load all plugins run: ./pullAllPluginsSource.sh - name: Determine metadata (tags, labels) for Docker framework with plugins build