Skip to content

Commit e440e7b

Browse files
authored
Merge pull request #120 from Lycoon/dev
trying to fix deploy
2 parents 060c5a7 + 03b0ea7 commit e440e7b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/deploy-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ jobs:
7070
script: |
7171
cd ${{ secrets.APP_PATH }}
7272
docker compose pull app-prod
73-
docker compose --env-file .env.prod --profile prod up -d
73+
docker compose --env-file .env.prod --profile prod up -d --force-recreate

.github/workflows/deploy-staging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ jobs:
7070
script: |
7171
cd ${{ secrets.APP_PATH }}
7272
docker compose pull app-staging
73-
docker compose --env-file .env.staging --profile staging up -d
73+
docker compose --env-file .env.staging --profile staging up -d --force-recreate

src-tauri/tauri.macos.conf.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"bundle": {
44
"category": "Productivity",
55
"macOS": {
6-
"entitlements": "./Entitlements.plist"
6+
"entitlements": "./Entitlements.plist",
7+
"signing": {
8+
"entitlements": "./Entitlements.plist"
9+
}
710
}
811
}
912
}

0 commit comments

Comments
 (0)