Skip to content

Commit

Permalink
♻️ :: runs-on 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
NohGaSeong authored Jul 12, 2024
1 parent 5d81bd9 commit fb6d227
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/git-common-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ on:
defaults: &defaults
run:
shell: bash
runs-on: ubuntu-latest


jobs:
setup-java:
<<: *defaults
runs-on: ubuntu-latest
steps:
- name: Set up JDK 18
uses: actions/setup-java@v3
Expand All @@ -28,7 +27,7 @@ jobs:
distribution: 'adopt'

build:
<<: *defaults
runs-on: ubuntu-latest
steps:
- name: Build
uses: ./.github/workflows/gradle-build.yml
Expand All @@ -38,18 +37,18 @@ jobs:


test:
<<: *defaults
runs-on: ubuntu-latest
uses: ./.github/workflows/gradle-test.yml
with:
job: test

package:
<<: *defaults
runs-on: ubuntu-latest
uses: ./.github/workflows/docker-packaging.yml
with:
job: package

deploy:
<<: *defaults
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/ecr-deploy.yml

0 comments on commit fb6d227

Please sign in to comment.