Skip to content

Commit

Permalink
Fix No such file or directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bifrurcated committed Jan 14, 2024
1 parent f926d34 commit 9381089
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,12 @@ jobs:

- name: Build image
run: mvn spring-boot:build-image -Ddockerfile=Dockerfile.layers -DskipTests
env:
IMAGE_NAME: ${{ steps.get-image-name.outputs.IMAGE_NAME }}

- name: Get image name
id: get-image-name
run: echo "${{ steps.build.outputs.IMAGE_NAME }}"
- name: print JAR_FILE
run: echo $JAR_FILE

- name: print image name
run: echo "IMAGE_NAME"
- name: print JAR_FILE
run: echo $project.artifactId:$project.version

- name: Push image
run: docker push <span class="math-inline">IMAGE\_NAME
run: docker push ${{ secrets.DOCKER_USERNAME }}/${project.artifactId}:${project.version}

0 comments on commit 9381089

Please sign in to comment.