Skip to content

Commit

Permalink
WorkFileHelper: target/work -> build/work. Github-action gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kreinhard committed Dec 7, 2024
1 parent fbc67b6 commit 9c574ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
run: chmod +x gradlew

- name: Test and build with Gradle
run: ./gradlew build --info --stacktrace
run: ./gradlew build
env:
SPRING_PROFILES_ACTIVE: test
SPRING_PROFILES_ACTIVE: ci
# MY_CUSTOM_ENV_VAR: "value"

#- name: Run tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public class WorkFileHelper

private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(WorkFileHelper.class);

private static final String WORK_DIR = "./target/work";
private static final String WORK_DIR = "./build/work";

/**
* Get the file from the working directory. If the working directory doesn't exist then it'll be created.
*
*
* @param filename
* @return
*/
Expand Down

0 comments on commit 9c574ea

Please sign in to comment.