Skip to content

Commit

Permalink
setting: jar 파일 target 폴더로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehan4707 authored Jul 21, 2024
1 parent d7507c2 commit bde5632
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/mimo-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:

- name: Install with Maven
run: mvn install

- name : print this directory
run: pwd
- name: List files in the current directory
Expand All @@ -56,14 +57,24 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Download JAR file
uses: actions/download-artifact@v2
with:
name: mimo

- name: Create target directory
run: mkdir -p target

- name: Move JAR file to target directory
run: mv mimo-*.jar target/app.jar

- name : print this directory
run: pwd

- name: List files in the current directory
run: ls -al

- name: Build the Docker image
run: docker build -t ${{ secrets.DOCKER_REPO }} .

Expand Down

0 comments on commit bde5632

Please sign in to comment.