Skip to content

Commit

Permalink
setting: jar 파일 업로드 코드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehan4707 authored Jul 21, 2024
1 parent b178ea5 commit 27a8efe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/mimo-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
run: pwd
- name: List files in the current directory
run: ls -al

- name: Upload JAR file
uses: actions/upload-artifact@v2
with:
name: mimo
path: target/mimo-*.jar

docker-login:
runs-on: ubuntu-latest
Expand All @@ -50,6 +56,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download JAR file
uses: actions/download-artifact@v2
with:
name: mimo
- name : print this directory
run: pwd
- name: List files in the current directory
Expand Down

0 comments on commit 27a8efe

Please sign in to comment.