Skip to content

Commit 246494b

Browse files
Merge remote-tracking branch 'upstream/main' into google-cloud-storage
2 parents c132bcb + d3916e1 commit 246494b

301 files changed

Lines changed: 20389 additions & 14039 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/automate-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ jobs:
5959
SSH_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
6060
SSH_HOST: ${{ secrets.DEV_OPS_HOST }}
6161

62-
- name: Deploy React
62+
- name: Deploy App
6363
run: |
64-
ssh ops -t -t 'bash -ic "cd mrsk && kamal deploy --version ${{ env.RELEASE }}.${{ github.sha }}.beta --config-file=config/react.yml --skip-push; exit"'
64+
ssh ops -t -t 'bash -ic "cd mrsk/prod && kamal deploy --version ${{ env.RELEASE }}.${{ github.sha }}.beta --config-file=app.yml --skip-push; exit"'
6565
6666
- name: Deploy Workers
6767
run: |
68-
ssh ops -t -t 'bash -ic "cd mrsk && kamal deploy --version ${{ env.RELEASE }}.${{ github.sha }}.beta --config-file=config/workers.yml --skip-push; exit"'
68+
ssh ops -t -t 'bash -ic "cd mrsk/prod && kamal deploy --version ${{ env.RELEASE }}.${{ github.sha }}.beta --config-file=worker.yml --skip-push; exit"'
6969
7070
Deploy-Checkly:
7171
name: Deploy E2E Tests Checkly
@@ -83,4 +83,4 @@ jobs:
8383
run: npx checkly deploy --config=packages/tests-e2e/checkly.config.ts --force
8484
env:
8585
CHECKLY_API_KEY: ${{ secrets.CHECKLY_API_KEY }}
86-
CHECKLY_ACCOUNT_ID: ${{ secrets.CHECKLY_ACCOUNT_ID }}
86+
CHECKLY_ACCOUNT_ID: ${{ secrets.CHECKLY_ACCOUNT_ID }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tmp
88
firebase-admin-sdk.json
99
dev
1010
/cache
11-
logs/
11+
/logs/
1212
.env
1313

1414
# SDK Build

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.20.5-bullseye-slim AS base
1+
FROM node:20.19-bullseye-slim AS base
22

33
# Use a cache mount for apt to speed up the process
44
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
@@ -52,8 +52,8 @@ COPY . .
5252
# Set NX_NO_CLOUD environment variable
5353
ENV NX_NO_CLOUD=true
5454

55-
RUN npx nx run-many --target=build --projects=server-api --configuration production
56-
RUN npx nx run-many --target=build --projects=react-ui
55+
RUN npx nx run-many --target=build --projects=server-api --configuration production --skip-nx-cache
56+
RUN npx nx run-many --target=build --projects=react-ui --skip-nx-cache
5757

5858
# Install backend production dependencies
5959
RUN cd dist/packages/server/api && npm install --production --force

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Read more about the feature comparison here https://www.activepieces.com/docs/ab
131131

132132
# 🌐 Contributions
133133

134-
We welcome contributions big or small and in different directions. The best way to do this is to check this [document](https://www.activepieces.com/docs/contributing/building-pieces/create-action) and we are always up to talk on [our Discord Server](https://discord.gg/2jUXBKDdP8).
134+
We welcome contributions big or small and in different directions. The best way to do this is to check this [document](https://www.activepieces.com/docs/developers/building-pieces/create-action) and we are always up to talk on [our Discord Server](https://discord.gg/2jUXBKDdP8).
135135

136136
## 📚 Translations
137137

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.0'
22
services:
33
activepieces:
4-
image: ghcr.io/activepieces/activepieces:0.70.7
4+
image: ghcr.io/activepieces/activepieces:0.70.8
55
container_name: activepieces
66
restart: unless-stopped
77
## Enable the following line if you already use AP_EXECUTION_MODE with SANDBOXED or old activepieces, checking the breaking change documentation for more info.

docs/about/breaking-changes.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ icon: "hammer"
55
---
66

77

8+
## 0.71.0
9+
10+
### What has changed?
11+
12+
- In separate workers setup, now they have access to Redis.
13+
14+
### When is action necessary?
15+
16+
- If you have separate workers setup, you should make sure that workers have access to Redis.
17+
818
## 0.70.0
919

1020
### What has changed?

0 commit comments

Comments
 (0)