Skip to content

Commit

Permalink
fix line #32 error
Browse files Browse the repository at this point in the history
  • Loading branch information
j-l-s committed Sep 12, 2024
1 parent 21c34c7 commit 1063c1c
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,33 @@ on:
branches:
# - "main"
# - "develop"
- "feature/github-actions-gradle"
- "feature/github-actions-gradle"
pull_request:
branches:
# - "main"
# - "develop"
- "do_not_execute"
- "do_not_execute"

jobs:
Continuous-Integration-Actions:
runs-on: self-hosted
env:
JAVA_VERSION: '22'
# env:
# JAVA_VERSION: 22

steps:
- name: Checkout of head
id: ci-sources-checkout
uses: actions/checkout@v4

- name: Set up JDK ${{env.JAVA_VERSION}}
- name: Set up JDK 22
id: ci-java-setup
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
java-version: 22
distribution: 'temurin'
- name: Gradle build
id: ci-gradle-build
run: |
# mamba env update --prune -f conda-env/corese-core.yaml
# conda activate corese-core
# ls -la
./gradlew clean publishToMavenLocal
run: ./gradlew clean publishToMavenLocal
shell: bash -l {0}

- name: Final Step
Expand Down

0 comments on commit 1063c1c

Please sign in to comment.