Skip to content

fix env vars

fix env vars #5

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle
permissions: write-all
on:
push:
jobs:
test-and-build:
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
- name: Test with Gradle Wrapper
env:
GITHUB_ACTIONS: true
EN2DO_DATABASE: ${{secrets.EN2DO_DATABASE}}
EN2DO_CONNECTSTRING: ${{secrets.EN2DO_CONNECTSTRING}}
run: gradle test
- name: Build with Gradle Wrapper and ShadowJar
run: gradle shadowJar