Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vladi14 committed Nov 11, 2023
1 parent b20f779 commit 71c74de
Showing 1 changed file with 48 additions and 56 deletions.
104 changes: 48 additions & 56 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,8 @@ env:
jobs:
build:
runs-on: ubuntu-latest
outputs:
output1: ${{ steps.step1.outputs.test }}
output2: ${{ steps.step2.outputs.test }}

steps:
- id: step1
run: echo "test=hello" >> $GITHUB_OUTPUT
- id: step2
run: echo "test=world" >> $GITHUB_OUTPUT

- name: repo checkout
uses: actions/checkout@v4

Expand All @@ -26,8 +18,8 @@ jobs:
run: |
version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
next_version=$(echo $version | awk -F'[.-]' '{print $1"."$2"."$3+1}')
mvn versions:set -DnewVersion=$next_version
echo $nextVersion >> version.txt
mvn versions:set -DnewVersion=$next_version
- name: Compile Code and Package Artifact
working-directory: ./myapp
Expand All @@ -47,60 +39,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.newVersion}}

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:latest

0 comments on commit 71c74de

Please sign in to comment.