Skip to content

fix: The time is saved with afternoon time but always returns morning time. #113

fix: The time is saved with afternoon time but always returns morning time.

fix: The time is saved with afternoon time but always returns morning time. #113

Workflow file for this run

# This is a basic workflow to help you get started with Actions
# This file was contributed by Carlos Parada, Edwin Betancourt and Yamel Senih from ERP Consultores y Asociados, C.A
name: Continuous Integration with Gradle
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
pull_request:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-ci:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Java JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-package: 'jdk'
java-version: 11
architecture: x64
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
gradle-version: 8.0.1
arguments: build
env:
ADEMPIERE_LIBRARY_VERSION: 'build'
ADEMPIERE_BASE_GROUP: ${{ secrets.ADEMPIERE_BASE_GROUP }}
ADEMPIERE_BASE_VERSION: ${{ secrets.ADEMPIERE_BASE_VERSION }}
ADEMPIERE_PUBLISH_GROUP: ${{ secrets.ADEMPIERE_PUBLISH_GROUP }}