Skip to content

Commit d2eb997

Browse files
committed
chore(repo): fix package repository directory paths
1 parent b7fa73b commit d2eb997

7 files changed

Lines changed: 8 additions & 9 deletions

File tree

apps/cms/fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ primary_region = 'arn'
2424

2525
[[vm]]
2626
size = 'shared-cpu-1x'
27-
memory = '1gb'
27+
memory = '512mb'

apps/web/fly.production.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ primary_region = 'arn'
1414

1515
[[http_service.checks]]
1616
method = 'GET'
17-
path = '/'
17+
path = '/api/health'
1818
grace_period = '10s'
1919
interval = '20s'
2020
timeout = '5s'

packages/fly-build-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/codeware-sthlm/codeware.git",
8-
"directory": "packages/nx-fly-build-action"
8+
"directory": "packages/fly-build-action"
99
},
1010
"author": {
1111
"name": "Codeware Sthlm",

packages/fly-deployment-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/codeware-sthlm/codeware.git",
8-
"directory": "packages/nx-fly-deployment-action"
8+
"directory": "packages/fly-deployment-action"
99
},
1010
"author": {
1111
"name": "Codeware Sthlm",

packages/fly-destroy-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/codeware-sthlm/codeware.git",
8-
"directory": "packages/nx-fly-destroy-action"
8+
"directory": "packages/fly-destroy-action"
99
},
1010
"author": {
1111
"name": "Codeware Sthlm",

packages/pr-comment-action/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020

2121
## Description
2222

23-
Posts a deployment status summary as a comment on the pull request. Upserts the comment on each run so the PR always shows the latest deployment state. The comment includes deployed URLs, skipped apps, and any failures.
23+
Posts a deployment status summary as a comment on the pull request. Updates the comment on each run so the PR always shows the latest deployment state. The comment includes deployed URLs and any failures.
2424

2525
## Usage
2626

27-
This action is typically the last step after [fly-deployment-action](https://github.com/codeware-sthlm/codeware/tree/main/packages/fly-deployment-action#readme). It uses the `deployed`, `failed`, and `skipped` outputs from the deployment step.
27+
This action is typically the last step after [fly-deployment-action](https://github.com/codeware-sthlm/codeware/tree/main/packages/fly-deployment-action#readme). It uses the `deployed` and `failed` outputs from the deployment step.
2828

2929
```yaml
3030
pr-comment:
@@ -44,7 +44,6 @@ pr-comment:
4444
environment: ${{ needs.deploy.outputs.environment }}
4545
deployed: ${{ needs.deploy.outputs.deployed }}
4646
failed: ${{ needs.deploy.outputs.failed }}
47-
skipped: ${{ needs.deploy.outputs.skipped }}
4847
token: ${{ secrets.GITHUB_TOKEN }}
4948
```
5049

packages/pr-comment-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/codeware-sthlm/codeware.git",
8-
"directory": "packages/nx-fly-pr-comment-action"
8+
"directory": "packages/pr-comment-action"
99
},
1010
"author": {
1111
"name": "Codeware Sthlm",

0 commit comments

Comments
 (0)