Skip to content

Workflow file for this run

name: 3. Develop ๐Ÿš€
on:
workflow_dispatch:
inputs:
deploy-api:
description: Develop API ์„œ๋ฒ„ ๋ฐฐํฌ ๐ŸŽ‰๐Ÿคฃ
type: boolean
required: false
force-rebuild:
description: ๊ฐ•์ œ ๋นŒ๋“œ
type: boolean
required: false
push:
branches:
- develop
# - 'feature/**'
pull_request:
branches:
- develop
# https://github.com/gradle/gradle-build-action#caching
permissions:
contents: write
jobs:
build:
name: ๋นŒ๋“œ & ํ…Œ์ŠคํŠธ
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
uses: ./.github/workflows/build.yml
with:
environment: develop
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
API_SERVER: https://dev.peoplehere.world
STAGE: develop
FORCE_REBUILD: ${{ inputs.force-rebuild == true }}
secrets: inherit