Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

Commit 5529669

Browse files
author
Alan Christie
committed
- License file fix for tag action
1 parent 71c163d commit 5529669

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

.github/workflows/build.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ jobs:
6060
path: ~/.gradle/caches
6161
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
6262
restore-keys: ${{ runner.os }}-gradle
63-
- name: Test
63+
- name: Install licenses
6464
run: |
6565
./gradlew installChemaxonLicenseToHome
6666
./gradlew installChemaxonLibrary
67-
./gradlew build
67+
working-directory: components
68+
- name: Test
69+
run: ./gradlew build
6870
working-directory: components
6971
- name: Build
7072
run: ./gradlew dockerBuildImages -x test

.github/workflows/publish-latest.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ jobs:
6060
path: ~/.gradle/caches
6161
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
6262
restore-keys: ${{ runner.os }}-gradle
63-
- name: Test
63+
- name: Install licenses
6464
run: |
6565
./gradlew installChemaxonLicenseToHome
6666
./gradlew installChemaxonLibrary
67-
./gradlew build
67+
working-directory: components
68+
- name: Test
69+
run: ./gradlew build
6870
working-directory: components
6971
- name: Build
7072
run: ./gradlew dockerBuildImages -x test

.github/workflows/publish-tag.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ jobs:
4646
uses: actions/setup-java@v1
4747
with:
4848
java-version: 8
49+
- name: Install licenses
50+
run: |
51+
./gradlew installChemaxonLicenseToHome
52+
./gradlew installChemaxonLibrary
53+
working-directory: components
4954
- name: Build
5055
run: ./gradlew dockerBuildImages -x test
5156
working-directory: components

0 commit comments

Comments
 (0)