We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae80490 commit 83c859dCopy full SHA for 83c859d
.github/workflows/codeql.yml
.github/workflows/maven.yml
@@ -17,6 +17,8 @@ on:
17
jobs:
18
build:
19
runs-on: macos-14
20
+ env:
21
+ PARENT_BRANCH: ${{ github.ref_name == 'master' && 'main' || github.ref_name }}
22
timeout-minutes: 15
23
steps:
24
- uses: actions/checkout@v4
@@ -31,6 +33,16 @@ jobs:
31
33
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
32
34
restore-keys: |
35
${{ runner.os }}-maven-
36
+ - name: Checkout fess-parent
37
+ uses: actions/checkout@v4
38
+ with:
39
+ repository: codelibs/fess-parent
40
+ ref: ${{ env.PARENT_BRANCH }}
41
+ path: fess-parent
42
+ - name: Install fess-parent
43
+ run: |
44
+ cd fess-parent
45
+ mvn install -Dgpg.skip=true
46
- name: Download Plugins with Maven
47
run: mvn -B antrun:run --file pom.xml
48
- name: Build with Maven
0 commit comments