Skip to content

Commit

Permalink
'ןפ
Browse files Browse the repository at this point in the history
  • Loading branch information
vladi14 committed Nov 11, 2023
1 parent 6057d6b commit e2bfb5b
Showing 1 changed file with 56 additions and 56 deletions.
112 changes: 56 additions & 56 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
echo "newVersion=$newVersion" >> "$GITHUB_ENV"
echo $newVersion >> version.txt
# - name: Compile Code and Package Artifact
# working-directory: ./myapp
# run: |
# mvn clean package
- name: Compile Code and Package Artifact
working-directory: ./myapp
run: |
mvn clean package
# - name: Create Jar artifact
# uses: actions/upload-artifact@v3
# with:
# name: my-artifact
# path: ${{ github.workspace }}/myapp/target/*.jar
- name: Create Jar artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: ${{ github.workspace }}/myapp/target/*.jar

- name: Create Version artifact
uses: actions/upload-artifact@v2
Expand All @@ -40,60 +40,60 @@ jobs:
path: myapp/version.txt


# publish:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Checkout Code
# uses: actions/checkout@v4
publish:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v4

# - name: Download JAR
# uses: actions/download-artifact@v3
# with:
# name: my-artifact
# path: ${{ github.workspace }}/myapp/target/
- name: Download JAR
uses: actions/download-artifact@v3
with:
name: my-artifact
path: ${{ github.workspace }}/myapp/target/

# - name: Download Version
# uses: actions/download-artifact@v3
# with:
# name: version
- name: Download Version
uses: actions/download-artifact@v3
with:
name: version

# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKER_UNAME }}
# password: ${{ secrets.DOCKER_KEY }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_UNAME }}
password: ${{ secrets.DOCKER_KEY }}


# - name: Set tag version
# run : |
# echo "new_tag=$(cat version.txt)"
- name: Set tag version
run : |
echo "new_tag=$(cat version.txt)"
# - name: Build Docker image and push
# uses: docker/build-push-action@v4
# with:
# context: .
# file: Dockerfile
# push: true
# tags: vladipiko/maven-hello-world:${{ env.newVersion}}
- name: Build Docker image and push
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile
push: true
tags: vladipiko/maven-hello-world:${{ env.new_tag }}

# deploy:
# runs-on: ubuntu-latest
# needs: publish
# steps:
# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKER_UNAME }}
# password: ${{ secrets.DOCKER_KEY }}
deploy:
runs-on: ubuntu-latest
needs: publish
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_UNAME }}
password: ${{ secrets.DOCKER_KEY }}

# - name: Download and Run Docker Image
# run: |
# docker pull vladipiko/maven-hello-world:latest
# docker run --rm -p 8080:8080 vladipiko/maven-hello-world:latest
- name: Download and Run Docker Image
run: |
docker pull vladipiko/maven-hello-world:latest
docker run --rm -p 8080:8080 vladipiko/maven-hello-world:${{ env.new_tag }}

0 comments on commit e2bfb5b

Please sign in to comment.