forked from ido83/maven-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (80 loc) · 2.7 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
name: Maven Build and Docker Image deploy
on: [push]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: repo checkout
uses: actions/checkout@v4
- name: update_version
working-directory: ./myapp
id: update_version
run: |
version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
next_version=$(echo $version | awk -F'[.-]' '{print $1"."$2"."$3+1}')
echo "nextVersion=$next_version" >> "$GITHUB_ENV"
echo $nextVersion >> version.txt
mvn versions:set -DnewVersion=$next_version
# - 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 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}}
# 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