Skip to content

Commit da154a0

Browse files
committed
🐛 Fixed typos in various CI scripts
Also updated to checkout@v6 and fixed README CI links.
1 parent 2d164c6 commit da154a0

8 files changed

+14
-13
lines changed

.github/workflows/build-and-deploy-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
2020
settings-path: ${{ github.workspace }} # location for the settings.xml file
2121

22-
- name: Publish Starter to GitHub Packages Apache Maven
22+
- name: Publish all artifacts with Maven
2323
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml
2424
env:
2525
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/fluentforms-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
experimental: true
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Set up JDK ${{ matrix.java }}
2828
uses: actions/setup-java@v5
2929
with:
@@ -38,6 +38,6 @@ jobs:
3838

3939
- name: Publish to GitHub Packages Apache Maven
4040
if: (github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*') && !matrix.experimental # Only run on main branch or tags and non-experimental
41-
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file fluentforms
41+
run: mvn -B deploy -DskipTests -s $GITHUB_WORKSPACE/settings.xml --file fluentforms # skip tests because they were performed during the build step
4242
env:
4343
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/rest-services-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
experimental: true
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Set up JDK ${{ matrix.java }}
2727
uses: actions/setup-java@v5
2828
with:
@@ -39,6 +39,6 @@ jobs:
3939

4040
- name: Publish to GitHub Packages Apache Maven
4141
if: (github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*') && !matrix.experimental # Only run on main branch or tags and non-experimental
42-
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml --file rest-services
42+
run: mvn deploy -DskipTests -s $GITHUB_WORKSPACE/settings.xml --file rest-services # skip tests because they were performed during the build step
4343
env:
4444
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/spring-boot-jersey-starter-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '.github/workflows/spring-boot-jersey-starter-ci.yml'
88
workflow_dispatch:
99

10-
jobs:
10+
jobs:
1111
build:
1212
name: Java ${{ matrix.java }} build
1313
runs-on: ubuntu-latest
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Build AutoConfigure with Maven
4141
if: (github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*') && !matrix.experimental # Only run on main branch or tags and non-experimental
42-
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-jersey-spring-boot-autoconfigure
42+
run: mvn -B deploy -DskipTests -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-jersey-spring-boot-autoconfigure # skip tests because they were run in the previous step
4343
env:
4444
GITHUB_TOKEN: ${{ github.token }}
4545

.github/workflows/spring-boot-starter-only-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Set up JDK 21
1414
uses: actions/setup-java@v5
1515
with:

.github/workflows/spring-boot-webmvc-starter-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Build AutoConfigure with Maven
4141
if: (github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*') && !matrix.experimental # Only run on main branch or tags and non-experimental
42-
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-autoconfigure
42+
run: mvn -B deploy -DskipTests -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-autoconfigure # skip tests because they were run in the previous step
4343
env:
4444
GITHUB_TOKEN: ${{ github.token }}
4545

.github/workflows/spring-sample-web-apps-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Spring Sample Web App CI
33
on:
44
push:
55
paths:
6-
- 'spring/fluentforms-sample-web-app/**'
6+
- 'spring/fluentforms-sample-web-jersey-app/**'
77
- 'spring/fluentforms-sample-webmvc-app/**'
8-
- '.github/workflows/spring-sample-web-app-ci.yml'
8+
- '.github/workflows/spring-sample-web-apps-ci.yml'
99
workflow_dispatch:
1010

1111
jobs:
@@ -23,7 +23,7 @@ jobs:
2323
experimental: true
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Set up JDK ${{ matrix.java }}
2828
uses: actions/setup-java@v5
2929
with:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# FluentForms API
44
[![Fluent Forms CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/fluentforms-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/fluentforms-ci.yml)
55
[![REST Services CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/rest-services-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/rest-services-ci.yml)
6-
[![Spring Boot Starter CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-starter-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-starter-ci.yml)
6+
[![Spring Boot Starter CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-webmvc-starter-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-webmvc-starter-ci.yml)
7+
[![Spring Boot Jersey Starter CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-jersey-starter-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-boot-jersey-starter-ci.yml)
78
[![Spring Sample Web App CI](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-sample-web-apps-ci.yml/badge.svg)](https://github.com/4PointSolutions/FluentFormsAPI/actions/workflows/spring-sample-web-apps-ci.yml)
89

910
The FluentForms API project is a set of Java libraries that allow remote access to

0 commit comments

Comments
 (0)