File tree Expand file tree Collapse file tree 4 files changed +53
-1
lines changed
Expand file tree Collapse file tree 4 files changed +53
-1
lines changed Original file line number Diff line number Diff line change 1+ /.backup
2+ /.s3-backup
13/.github
24/tests
35/tools
6+
7+ node_modules
8+ .env *
9+ .previous-backup.tar.gz
10+ .DS_Store
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ jobs:
198198 echo "image_name=$IMAGE_NAME" >> "$GITHUB_OUTPUT"
199199 echo "image_tag=$IMAGE_TAG" >> "$GITHUB_OUTPUT"
200200 echo "image=registry.fly.io/$IMAGE_NAME:$IMAGE_TAG" >> "$GITHUB_OUTPUT"
201- - name : Build and push frontend Docker image
201+ - name : Build and push CMS Docker image
202202 run : |
203203 flyctl deploy \
204204 --app ${{ steps.image-name.outputs.image_name }} \
Original file line number Diff line number Diff line change 1+ # Ignore everything
2+ **
3+
4+ # But include the necessary parts
5+ !package.json
6+ !pnpm-lock.yaml
7+ !pnpm-workspace.yaml
8+ !.npmrc
9+ !/apps/cms
10+ !/libs/shared
11+
12+ # These should be ignored, though
13+ **/.cms-cache
14+ **/.next
15+ **/.react-router
16+ **/build
17+ **/node_modules
18+ **/tests
19+ **/.env*
20+ **/tsconfig.tsbuildinfo
21+ **/.vscode
22+ **/.DS_Store
Original file line number Diff line number Diff line change 1+ # Ignore everything
2+ **
3+
4+ # But include the necessary parts
5+ !package.json
6+ !pnpm-lock.yaml
7+ !pnpm-workspace.yaml
8+ !.npmrc
9+ !/apps/frontend
10+ !/libs/shared
11+ !/libs/payload-types
12+
13+ # These should be ignored, though
14+ **/.cms-cache
15+ **/.next
16+ **/.react-router
17+ **/build
18+ **/node_modules
19+ **/tests
20+ **/.env*
21+ **/tsconfig.tsbuildinfo
22+ **/.vscode
23+ **/.DS_Store
You can’t perform that action at this time.
0 commit comments