[#128] 필터 칩 고를때, filter 거는게 아닌 api 새로 호출 #459
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: Android CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "feature**", "hotfix**", "release**", "develop**", "master" ] | |
jobs: | |
common_setup: | |
uses: ./.github/workflows/common-setup.yaml | |
secrets: inherit | |
build: | |
needs: common_setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Download common setup files | |
uses: actions/download-artifact@v4 | |
with: | |
name: common-setup-files | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug |