File tree 4 files changed +61
-9
lines changed
4 files changed +61
-9
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches-ignore :
6
6
- " main"
7
+ paths-ignore :
8
+ - ' README.md'
9
+ - ' LICENSE'
10
+ - ' CHANGELOG.md'
11
+ - ' CONTRIBUTING.md'
12
+ - ' LICENSE'
13
+ - ' doc/**'
7
14
8
15
jobs :
9
16
build :
10
17
runs-on : ubuntu-latest
11
18
steps :
12
19
- name : Checkout
13
- uses : actions/checkout@v3
14
-
20
+ uses : actions/checkout@v4
15
21
- name : Set up Docker Buildx
16
22
uses : docker/setup-buildx-action@v2
17
23
- name : Build
Original file line number Diff line number Diff line change
1
+ name : build and pull nightly docker image
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - " main"
7
+ paths-ignore :
8
+ - ' README.md'
9
+ - ' LICENSE'
10
+ - ' CHANGELOG.md'
11
+ - ' CONTRIBUTING.md'
12
+ - ' LICENSE'
13
+ - ' doc/**'
14
+
15
+ jobs :
16
+ build :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout
20
+ uses : actions/checkout@v4
21
+ - name : Get the version
22
+ id : get_version
23
+ run : |
24
+ VERSION=$(date +%Y%m%d)-$(git rev-parse --short=6 HEAD)-nightly
25
+ echo ::set-output name=VERSION::${VERSION}
26
+ - name : Write version to webapp
27
+ run : echo "VITE_APP_VERSION=${{ steps.get_version.outputs.VERSION }}" >> webapp/.env.production
28
+ - name : Login to Docker Hub
29
+ uses : docker/login-action@v2
30
+ with :
31
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
32
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
33
+ - name : Set up Docker Buildx
34
+ uses : docker/setup-buildx-action@v2
35
+ - name : Build and push
36
+ uses : docker/build-push-action@v3
37
+ with :
38
+ context : .
39
+ file : ./Dockerfile
40
+ push : true
41
+ tags : " ${{ secrets.DOCKERHUB_USERNAME }}/httpymonitor:nightly"
Original file line number Diff line number Diff line change 1
- name : build and pull latest or versioned docker image
1
+ name : build and pull versioned and latest docker image
2
2
3
3
on :
4
- push :
5
- branches :
6
- - " main"
7
4
release :
8
5
types : [created]
9
6
12
9
runs-on : ubuntu-latest
13
10
steps :
14
11
- name : Checkout
15
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
16
13
- name : Get the version
17
14
id : get_version
18
15
run : |
19
- VERSION=$(git describe --tags --abbrev=0 2>/dev/null || echo 'latest' )
16
+ VERSION=$(git describe --tags --abbrev=0 2>/dev/null || exit 1 )
20
17
echo ::set-output name=VERSION::${VERSION}
21
18
- name : Write version to webapp
22
19
run : echo "VITE_APP_VERSION=${{ steps.get_version.outputs.VERSION }}" >> webapp/.env.production
33
30
context : .
34
31
file : ./Dockerfile
35
32
push : true
36
- tags : " ${{ secrets.DOCKERHUB_USERNAME }}/httpymonitor:${{ steps.get_version.outputs.VERSION }}"
33
+ tags : |
34
+ "${{ secrets.DOCKERHUB_USERNAME }}/httpymonitor:${{ steps.get_version.outputs.VERSION }}"
35
+ "${{ secrets.DOCKERHUB_USERNAME }}/httpymonitor:latest"
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ This example:
36
36
- listens on port ` 8081 ` for incoming HTTP requests
37
37
- names the container ` httpymonitor-github-api `
38
38
39
+ ## Docker images versions
40
+
41
+ - ` nightly ` : ` smartondev/httpymonitor:nightly ` (latest)
42
+ - ` x.y.z ` : ` smartondev/httpymonitor:x.y.z ` (stable)
43
+ - ` latest ` : ` smartondev/httpymonitor:latest ` (latest stable)
44
+
39
45
## Author
40
46
41
47
[ Márton Somogyi] ( https://github.com/kamarton )
You can’t perform that action at this time.
0 commit comments