@tiledesk/tiledesk-server 2.15.0 → 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.
@@ -12,12 +12,20 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
 
14
14
  steps:
15
- - uses: actions/checkout@v2
16
- name: Check out the repo
17
- - uses: docker/build-push-action@v4
18
- with:
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
- repository: tiledesk/tiledesk-server
22
- dockerfile: Dockerfile-profiler
23
- tags: latest-profiler
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
- - uses: actions/checkout@v2
16
- name: Check out the repo
17
- - uses: docker/build-push-action@v4
18
- with:
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
- repository: tiledesk/tiledesk-server
22
- tags: latest
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
- - uses: actions/checkout@v2
16
- name: Check out the repo
17
- - uses: docker/build-push-action@v4
18
- with:
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
- repository: tiledesk/tiledesk-server-worker
22
- dockerfile: Dockerfile-jobs
23
- tags: latest
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@v2
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@v3
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@v4
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@v2
15
- - name: Push to Docker Hub
16
- uses: docker/build-push-action@v4
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
- repository: tiledesk/tiledesk-server
21
- tag_with_ref: true
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@v2
15
- - name: Push to Docker Hub
16
- uses: docker/build-push-action@v4
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
- dockerfile: Dockerfile-jobs
21
- repository: tiledesk/tiledesk-server-worker
22
- tag_with_ref: true
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
- - uses: actions/checkout@v2
16
- name: Check out the repo
17
- - uses: docker/build-push-action@v4
18
- with:
19
- username: ${{ secrets.DOCKER_USERNAME }}
20
- password: ${{ secrets.DOCKER_PASSWORD }}
21
- build_args: NPM_TOKEN=${{ secrets.NPM_TOKEN }}
22
- dockerfile: Dockerfile-en
23
- repository: tiledeskrepo/tiledesk-server-enterprise
24
- tags: latest
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
@@ -5,7 +5,13 @@
5
5
  🚀 IN PRODUCTION 🚀
6
6
  (https://www.npmjs.com/package/@tiledesk/tiledesk-server/v/2.3.77)
7
7
 
8
+ # 2.15.2
9
+ - Updated GitHub actions
10
+
8
11
  # 2.15.1
12
+ - Updated whatsapp-connector to 1.0.24
13
+
14
+ # 2.15.0
9
15
  - Updated whatsapp-connector to 1.0.23
10
16
  - Fix logout with Google Signin method
11
17
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-server",
3
3
  "description": "The Tiledesk server module",
4
- "version": "2.15.0",
4
+ "version": "2.15.2",
5
5
  "scripts": {
6
6
  "start": "node ./bin/www",
7
7
  "pretest": "mongodb-runner start",
@@ -52,7 +52,7 @@
52
52
  "@tiledesk/tiledesk-tybot-connector": "^2.0.44",
53
53
  "@tiledesk/tiledesk-voice-twilio-connector": "^0.1.28",
54
54
  "@tiledesk/tiledesk-vxml-connector": "^0.1.89",
55
- "@tiledesk/tiledesk-whatsapp-connector": "1.0.23",
55
+ "@tiledesk/tiledesk-whatsapp-connector": "1.0.24",
56
56
  "@tiledesk/tiledesk-whatsapp-jobworker": "^0.0.13",
57
57
  "amqplib": "^0.5.5",
58
58
  "app-root-path": "^3.0.0",