Add StageType Filter for Stage Tabs in each Environment #3447
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: Java CI | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'deploy-service/**' | |
- '.github/workflows/maven.yml' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 8 | |
cache: 'maven' | |
- name: Build with Maven | |
working-directory: deploy-service | |
run: | | |
mvn clean package --file pom.xml -P-pinterest-dependenies,exclude-pinterest-only-classes |