chore: CD 과정에서 output 변수 이름 수정 #4
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: dev integration | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup jdk | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: setup gradle | |
run: | | |
chmod +x gradlew | |
- name: build with gradle | |
run: ./gradlew build |