Skip to content

Commit

Permalink
fix: action.yml 에서 대괄호->중괄호로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
itsme-shawn committed Jan 30, 2024
1 parent bc8ed59 commit 06ecc79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

- name: [dev] Build, tag, and push image to Amazon ECR
- name: (dev) Build, tag, and push image to Amazon ECR
if: github.ref == 'refs/heads/dev'
run: |
# docker image 빌드
Expand All @@ -49,7 +49,7 @@ jobs:
docker push 533267191976.dkr.ecr.ap-northeast-2.amazonaws.com/reddi-server-dev:latest
- name: [main] Build, tag, and push image to Amazon ECR
- name: (main) Build, tag, and push image to Amazon ECR
if: github.ref == 'refs/heads/main'
run: |
# docker image 빌드
Expand All @@ -63,7 +63,7 @@ jobs:
docker push 533267191976.dkr.ecr.ap-northeast-2.amazonaws.com/reddi-server:latest
- name: [dev] executing remote ssh commands using password
- name: (dev) executing remote ssh commands using password
if: github.ref == 'refs/heads/dev'
uses: appleboy/ssh-action@master
with:
Expand All @@ -83,7 +83,7 @@ jobs:
docker compose -f docker-compose-dev.yml up -d
docker image prune -f
- name: [main] executing remote ssh commands using password
- name: (main) executing remote ssh commands using password
if: github.ref == 'refs/heads/main'
uses: appleboy/ssh-action@master
with:
Expand Down

0 comments on commit 06ecc79

Please sign in to comment.