Skip to content

Commit

Permalink
♻️ :: 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
NohGaSeong authored Jul 12, 2024
1 parent b2f3473 commit 6c3efd7
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/git-common-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,25 @@ jobs:

test:
runs-on: ubuntu-latest
uses: ./.github/workflows/gradle-test.yml
with:
job: test
steps:
- name: test
uses: ./.github/workflows/gradle-test.yml
with:
job: test

package:
runs-on: ubuntu-latest
uses: ./.github/workflows/docker-packaging.yml
with:
job: package
steps:
- name: packaing
uses: ./.github/workflows/docker-packaging.yml
with:
job: package

deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/ecr-deploy.yml
steps:
- name: deployment
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/ecr-deploy.yml
with:
job: deploy

0 comments on commit 6c3efd7

Please sign in to comment.