forked from ido83/maven-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (86 loc) · 2.8 KB
/
ci_pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Maven Build and Docker Image deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: repo checkout
uses: actions/checkout@v4
- name: update_version
working-directory: ./myapp
run: |
version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
newVersion=$(echo $version | awk -F'[.-]' '{print $1"."$2"."$3+1}') >> $GITHUB_ENV
mvn versions:set -DnewVersion=$newVersion
echo "newVersion=$newVersion" >> "$GITHUB_ENV"
echo $newVersion >> version.txt
- 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 Version artifact
uses: actions/upload-artifact@v2
with:
name: version
path: myapp/version.txt
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 Version
uses: actions/download-artifact@v3
with:
name: version
- name: Set up QEMU
uses: docker/setup-qemu-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: Set tag variable
run : |
echo "new_tag=$(cat version.txt)" >> "$GITHUB_ENV"
- 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: Download Version
uses: actions/download-artifact@v3
with:
name: version
- name: Set tag variable
run : |
echo "new_tag=$(cat version.txt)" >> "$GITHUB_ENV"
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_UNAME }}
password: ${{ secrets.DOCKER_KEY }}
- name: Run the build process with Docker
uses: addnab/docker-run-action@v3
with:
image: ${{ secrets.DOCKER_REPO }}/maven-hello-world:${{ env.new_tag }}
run: |
java -jar app.jar