Skip to content

Commit

Permalink
fix: setup java
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Oct 4, 2023
1 parent effcddb commit 67383a9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Publish Docker
on:
push:
branches:
- main
on: [push]

jobs:
build:
Expand All @@ -11,6 +8,12 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'zulu'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

Expand Down

0 comments on commit 67383a9

Please sign in to comment.