Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/group-ape' into group-ape
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiMaglio committed Sep 12, 2024
2 parents 1e2222b + 3dd121f commit 5bfbd76
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
env:
USERNAME: <your-username>
TOKEN: ${{ secrets.GITHUB_TOKEN }}

4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repositories {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/ingsis-group10-2024/printscript")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
username = project.findProperty("github.user") ?: System.getenv("USERNAME")
password = project.findProperty("github.token") ?: System.getenv("TOKEN")
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/test/java/formatter/FormatterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@ private static BiFunction<String, String, List<Object[]>> filePicker() {
}
};
}

}

0 comments on commit 5bfbd76

Please sign in to comment.