Skip to content

Commit 0e27f59

Browse files
committed
Update build scripting workflow to build feature branches.
1 parent f356d62 commit 0e27f59

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

.github/workflows/feature-build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build a feature branch
2+
on:
3+
push:
4+
branches:
5+
- 'feature/**'
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Configure Java version
16+
uses: actions/setup-java@v3
17+
with:
18+
java-version: '21'
19+
distribution: 'temurin'
20+
architecture: x64
21+
- name: Setup Gradle
22+
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
23+
- name: Build code
24+
run: ./gradlew check

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Pledger.io has the following features:
2828

2929
## Get started
3030

31-
**Note:** the front-end application can be found in the [user-interface](https://bitbucket.org/jongsoftdev/user-interface) repository. The [deployment](https://bitbucket.org/jongsoftdev/fintrack-deployment) build will bundle the front-end with this backend system.
31+
**Note:** the front-end application can be found in the [user-interface](https://github.com/pledger-io/user-interface) repository. The [deployment](https://github.com/pledger-io/build-tooling) build will bundle the front-end with this backend system.
3232

3333
In this repository you will find the backend REST application needed to run Pledger.io.
3434

@@ -45,7 +45,7 @@ You can build the application using the Gradle command:
4545

4646
### Running the backend
4747

48-
The generated phat JAR in the ```fintrack-api``` module can be started, which will run the backend of FinTrack. To access the
48+
The generated phat JAR in the ```fintrack-api``` module can be started, which will run the backend of Pledger.io. To access the
4949
API documentation use the url:
5050

5151
http://localhost:8080/spec/index.html

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ subprojects {
3838
from(components["java"])
3939

4040
pom {
41-
description = "The REST-API for Pledger.ioS"
41+
description = "The REST-API for Pledger.io"
4242
url = "https://www.pledger.io/"
4343
name = project.name
4444
scm {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name="FinTrack"
1+
rootProject.name="Pledger"
22

33
pluginManagement {
44
plugins {

0 commit comments

Comments
 (0)