HAI-1873 Remove explicit produces tags #1125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hanke-service-feature | |
env: | |
GRADLE_MODULE: services:hanke-service | |
on: | |
push: | |
branches: | |
- HAI** | |
- hai** | |
paths: | |
- services/hanke-service/** | |
- .github/workflows/hanke-service-feature.yml | |
jobs: | |
build: | |
name: Gradle Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build with Gradle | |
run: ./gradlew :${{ env.GRADLE_MODULE }}:build :${{ env.GRADLE_MODULE }}:integrationTest |