Skip to content

Commit 7e8ac5c

Browse files
authored
fix(ci): docker (#1451)
* Docker ci 2 * Bun issues * bun lock
1 parent c12b3d2 commit 7e8ac5c

File tree

5 files changed

+46
-43
lines changed

5 files changed

+46
-43
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Build and Publish Docker Image
22

33
on:
4-
push:
5-
branches: [main, staging]
64
workflow_call:
5+
workflow_dispatch:
76

87
permissions:
98
contents: read

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [main, staging]
88

9+
concurrency:
10+
group: ci-${{ github.ref }}
11+
cancel-in-progress: false
12+
913
jobs:
1014
test:
1115
name: Test and Build

apps/sim/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
"zod": "^3.24.2"
114114
},
115115
"devDependencies": {
116+
"@tailwindcss/postcss": "4.1.13",
116117
"@testing-library/jest-dom": "^6.6.3",
117118
"@types/html-to-text": "9.0.4",
118119
"@types/js-yaml": "4.0.9",

apps/sim/postcss.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
33
plugins: {
4-
tailwindcss: {},
4+
'@tailwindcss/postcss': {},
55
},
66
}
77

0 commit comments

Comments
 (0)