Skip to content

fix: github action 오류 해결 #74

fix: github action 오류 해결

fix: github action 오류 해결 #74

Workflow file for this run

name: backend-deploy
on:
push:
branches:
- main
- develop
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: set up Java
uses: actions/[email protected]
with:
java-version: "11"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
shell: bash
- name: Build with Gradle
run: ./gradlew bootjar
shell: bash