From d03a42e1e224ddff75cefbcfcaa9c465cd2b7a55 Mon Sep 17 00:00:00 2001 From: Umjiseung <127853946+Umjiseung@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:42:43 +0900 Subject: [PATCH] =?UTF-8?q?update=20::=20ci=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7b2ba6..702af0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,22 +2,23 @@ name: CI on: push: - branches: [ "main" ] + branches: ["master"] pull_request: - branches: [ "*" ] - -permissions: write-all + branches: ["*"] jobs: - build: + CI: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '17' - distribution: 'temurin' + java-version: "17" + distribution: "temurin" - name: Grant execute permission for gradlew run: chmod +x gradlew