Skip to content

Commit

Permalink
[fix] add build steps in cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tkdwns414 committed Jul 4, 2024
1 parent d6930cd commit ef110e2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ jobs:
submodules: true
token: ${{ secrets.SUBMODULE_TOKEN }}

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: build
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash

- name: docker login
uses: docker/[email protected]

Expand Down

0 comments on commit ef110e2

Please sign in to comment.