Skip to content

Commit

Permalink
chore: test git workflow (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
coding-convention committed Jun 30, 2023
1 parent 7f6feb7 commit ba01599
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build-Deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:


- name: make application.yml
if: |
contains(github.ref, 'main') ||
contains(github.ref, 'dev')
# if: |
# contains(github.ref, 'main') ||
# contains(github.ref, 'dev')
run: |
mkdir ./src/main/resources
cd ./src/main/resources
Expand All @@ -39,7 +39,7 @@ jobs:
shell: bash

- name: make application-dev.yml
if: contains(github.ref, 'dev')
# if: contains(github.ref, 'dev')
run: |
cd ./src/main/resources
touch ./application-dev.yml
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:


- name: Build, tag, and push image to Amazon ECR
if: contains(github.ref, 'dev')
# if: contains(github.ref, 'dev')
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
Expand Down

0 comments on commit ba01599

Please sign in to comment.