@tiledesk/tiledesk-server 2.15.1 → 2.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/docker-community-profiler-latest.yml +15 -7
- package/.github/workflows/docker-community-push-latest.yml +14 -6
- package/.github/workflows/docker-community-worker-push-latest.yml +15 -8
- package/.github/workflows/docker-image-en-tag-push.yml +8 -5
- package/.github/workflows/docker-image-tag-community-tag-push.yml +22 -5
- package/.github/workflows/docker-image-tag-worker-community-tag-push.yml +22 -7
- package/.github/workflows/docker-push-en-push-latest.yml +19 -10
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
|
@@ -12,12 +12,20 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
- name: Check out the repo
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Login to Docker Hub
|
|
19
|
+
uses: docker/login-action@v3
|
|
20
|
+
with:
|
|
19
21
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
20
22
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
- name: Build and push
|
|
25
|
+
uses: docker/build-push-action@v6
|
|
26
|
+
with:
|
|
27
|
+
context: .
|
|
28
|
+
file: ./Dockerfile-profiler
|
|
29
|
+
push: true
|
|
30
|
+
tags: tiledesk/tiledesk-server:latest-profiler
|
|
31
|
+
|
|
@@ -12,11 +12,19 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
- name: Check out the repo
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Login to Docker Hub
|
|
19
|
+
uses: docker/login-action@v3
|
|
20
|
+
with:
|
|
19
21
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
20
22
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
|
|
24
|
+
- name: Build and push
|
|
25
|
+
uses: docker/build-push-action@v6
|
|
26
|
+
with:
|
|
27
|
+
context: .
|
|
28
|
+
file: ./Dockerfile
|
|
29
|
+
push: true
|
|
30
|
+
tags: tiledesk/tiledesk-server:latest
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Docker Image Community latest CI
|
|
1
|
+
name: Docker Image Community Worker latest CI
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -12,12 +12,19 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
- name: Check out the repo
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Login to Docker Hub
|
|
19
|
+
uses: docker/login-action@v3
|
|
20
|
+
with:
|
|
19
21
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
20
22
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
- name: Build and push
|
|
25
|
+
uses: docker/build-push-action@v6
|
|
26
|
+
with:
|
|
27
|
+
context: .
|
|
28
|
+
file: ./Dockerfile-jobs
|
|
29
|
+
push: true
|
|
30
|
+
tags: tiledesk/tiledesk-server-worker:latest
|
|
@@ -11,15 +11,13 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out the repo
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
15
|
|
|
16
16
|
- name: Login to Docker Hub
|
|
17
17
|
uses: docker/login-action@v3
|
|
18
18
|
with:
|
|
19
19
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
20
20
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
21
|
-
repository: tiledeskrepo/tiledesk-server-enterprise
|
|
22
|
-
tag_with_ref: true
|
|
23
21
|
|
|
24
22
|
- name: Log Voice Token
|
|
25
23
|
run: |
|
|
@@ -29,9 +27,13 @@ jobs:
|
|
|
29
27
|
run: |
|
|
30
28
|
echo "Voice Twilio token log: ${{ secrets.VOICE_TWILIO_TOKEN }}"
|
|
31
29
|
|
|
30
|
+
- name: Log Voice Enghouse Token
|
|
31
|
+
run: |
|
|
32
|
+
echo "Voice Enghouse token log: ${{ secrets.VOICE_ENGHOUSE_TOKEN }}"
|
|
33
|
+
|
|
32
34
|
- name: Generate Docker metadata
|
|
33
35
|
id: meta
|
|
34
|
-
uses: docker/metadata-action@
|
|
36
|
+
uses: docker/metadata-action@v5
|
|
35
37
|
with:
|
|
36
38
|
images: tiledeskrepo/tiledesk-server-enterprise
|
|
37
39
|
tags: |
|
|
@@ -39,7 +41,7 @@ jobs:
|
|
|
39
41
|
type=semver,pattern={{version}}
|
|
40
42
|
|
|
41
43
|
- name: Push to Docker Hub
|
|
42
|
-
uses: docker/build-push-action@
|
|
44
|
+
uses: docker/build-push-action@v6
|
|
43
45
|
with:
|
|
44
46
|
context: .
|
|
45
47
|
file: ./Dockerfile-en
|
|
@@ -48,4 +50,5 @@ jobs:
|
|
|
48
50
|
NPM_TOKEN=${{ secrets.NPM_TOKEN }}
|
|
49
51
|
VOICE_TOKEN=${{ secrets.VOICE_TOKEN }}
|
|
50
52
|
VOICE_TWILIO_TOKEN=${{ secrets.VOICE_TWILIO_TOKEN }}
|
|
53
|
+
VOICE_ENGHOUSE_TOKEN=${{ secrets.VOICE_ENGHOUSE_TOKEN }}
|
|
51
54
|
tags: ${{ steps.meta.outputs.tags }}
|
|
@@ -11,11 +11,28 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out the repo
|
|
14
|
-
uses: actions/checkout@
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Login to Docker Hub
|
|
17
|
+
uses: docker/login-action@v3
|
|
17
18
|
with:
|
|
18
19
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
19
20
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
|
|
22
|
+
- name: Generate Docker metadata
|
|
23
|
+
id: meta
|
|
24
|
+
uses: docker/metadata-action@v5
|
|
25
|
+
with:
|
|
26
|
+
images: tiledesk/tiledesk-server
|
|
27
|
+
tags: |
|
|
28
|
+
type=ref,event=branch
|
|
29
|
+
type=semver,pattern={{version}}
|
|
30
|
+
|
|
31
|
+
- name: Build and push
|
|
32
|
+
uses: docker/build-push-action@v6
|
|
33
|
+
with:
|
|
34
|
+
context: .
|
|
35
|
+
file: ./Dockerfile
|
|
36
|
+
push: true
|
|
37
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
38
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Publish Docker Community image tags
|
|
1
|
+
name: Publish Docker Community Worker image tags
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -11,12 +11,27 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out the repo
|
|
14
|
-
uses: actions/checkout@
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Login to Docker Hub
|
|
17
|
+
uses: docker/login-action@v3
|
|
17
18
|
with:
|
|
18
19
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
19
20
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
|
|
22
|
+
- name: Generate Docker metadata
|
|
23
|
+
id: meta
|
|
24
|
+
uses: docker/metadata-action@v5
|
|
25
|
+
with:
|
|
26
|
+
images: tiledesk/tiledesk-server-worker
|
|
27
|
+
tags: |
|
|
28
|
+
type=ref,event=branch
|
|
29
|
+
type=semver,pattern={{version}}
|
|
30
|
+
|
|
31
|
+
- name: Build and push
|
|
32
|
+
uses: docker/build-push-action@v6
|
|
33
|
+
with:
|
|
34
|
+
context: .
|
|
35
|
+
file: ./Dockerfile-jobs
|
|
36
|
+
push: true
|
|
37
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
@@ -12,13 +12,22 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
- name: Check out the repo
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- name: Login to Docker Hub
|
|
19
|
+
uses: docker/login-action@v3
|
|
20
|
+
with:
|
|
21
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
22
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
23
|
+
|
|
24
|
+
- name: Build and push
|
|
25
|
+
uses: docker/build-push-action@v6
|
|
26
|
+
with:
|
|
27
|
+
context: .
|
|
28
|
+
file: ./Dockerfile-en
|
|
29
|
+
push: true
|
|
30
|
+
build-args: |
|
|
31
|
+
NPM_TOKEN=${{ secrets.NPM_TOKEN }}
|
|
32
|
+
tags: tiledeskrepo/tiledesk-server-enterprise
|
|
33
|
+
|
package/CHANGELOG.md
CHANGED