diff --git a/.github/workflows/mimo-deploy.yml b/.github/workflows/mimo-deploy.yml index 522d40d..e9e5621 100644 --- a/.github/workflows/mimo-deploy.yml +++ b/.github/workflows/mimo-deploy.yml @@ -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 @@ -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