feat: add branch to test feature #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 데브 워크플로우 | ||
on: | ||
push: | ||
branches: [ 'dev', 'feature/OING-27' ] | ||
paths: | ||
- 'config/**' # Config 모듈 변경 | ||
- 'member/**' # Member 모듈 변경 | ||
- 'common/**' # Common 모듈 변경 | ||
- '.github/workflows/**' # 워크플로우와 관련된 파일이 변경된 경우 | ||
- 'build.gradle' # Parent Gradle 모듈 설정이 변경된 경우 | ||
- 'settings.gradle' # Parent Gradle 설정이 변경된 경우 | ||
env: | ||
SPRING_PROFILE: dev | ||
ENVIRONMENT: development | ||
IMAGE_NAME: no5ing/spring-was-dev | ||
SERVICE_NAME: be-dev-was | ||
concurrency: | ||
group: development | ||
jobs: | ||
prepare-variables: | ||
name: 환경변수 준비하기 | ||
runs-on: ubuntu-latest | ||
outputs: | ||
image-tag: ${{ steps.setup-env.outputs.image-tag }} | ||
spring-profile: ${{ steps.setup-env.outputs.spring-profile }} | ||
environment: ${{ steps.setup-env.outputs.environment }} | ||
image-name: ${{ steps.setup-env.outputs.image-name }} | ||
service-name: ${{ steps.setup-env.outputs.service-name }} | ||
steps: | ||
- name: GitHub 에서 레포 받아오기 | ||
uses: actions/checkout@v3 | ||
- name: 환경변수 출력하기 | ||
id: setup-env | ||
run: | | ||
echo "image-tag=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
echo "spring-profile=$SPRING_PROFILE" >> $GITHUB_OUTPUT | ||
echo "environment=$ENVIRONMENT" >> $GITHUB_OUTPUT | ||
echo "image-name=$IMAGE_NAME" >> $GITHUB_OUTPUT | ||
echo "service-name=$SERVICE_NAME" >> $GITHUB_OUTPUT | ||
call-build-workflow: | ||
if: github.event_name == 'push' | ||
needs: [ prepare-variables ] | ||
name: 이미지 빌드 | ||
uses: ./.github/workflows/build.yaml | ||
permissions: | ||
id-token: write | ||
contents: read | ||
with: | ||
image-tag: ${{ needs.prepare-variables.outputs.image-tag }} | ||
spring-profile: ${{ needs.prepare-variables.outputs.spring-profile }} | ||
image-name: ${{ needs.prepare-variables.outputs.image-name }} | ||
secrets: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
call-deploy-workflow: | ||
if: github.event_name == 'push' | ||
needs: [ prepare-variables, call-build-workflow ] | ||
name: 서비스 배포 | ||
uses: ./.github/workflows/deploy.yaml | ||
permissions: | ||
id-token: write | ||
contents: read | ||
secrets: | ||
REMOTE_SSH_HOST: ${{ secrets.REMOTE_SSH_HOST }} | ||
REMOTE_SSH_USERNAME: ${{ secrets.REMOTE_SSH_USERNAME }} | ||
REMOTE_SSH_KEY: ${{ secrets.REMOTE_SSH_KEY }} | ||
REMOTE_SSH_PASSPHRASE: ${{ secrets.REMOTE_SSH_PASSPHRASE }} | ||
REMOTE_SSH_PORT: ${{ secrets.REMOTE_SSH_PORT }} | ||
with: | ||
image-tag: ${{ needs.prepare-variables.outputs.image-tag }} | ||
spring-profile: ${{ needs.prepare-variables.outputs.spring-profile }} | ||
environment: ${{ needs.prepare-variables.outputs.environment }} | ||
image-name: ${{ needs.prepare-variables.outputs.image-name }} | ||
service-name: ${{ needs.prepare-variables.outputs.service-name }} | ||
slack-webhook: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
Check failure on line 81 in .github/workflows/dev.yaml GitHub Actions / 데브 워크플로우Invalid workflow file
|