File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
dev-packages/env-tests/cloudflare-astro Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,6 @@ jobs:
206
206
# where the built packages are beside the point. In that case, you can change `BUILD_CACHE_KEY` (at the top of
207
207
# this file) to a constant and skip rebuilding all of the packages each time CI runs.
208
208
if : steps.cache_built_packages.outputs.cache-hit == ''
209
- working-directory : dev-packages/env-tests/cloudflare-astro
210
209
run : yarn build
211
210
212
211
- name : Publish to Cloudflare Pages
@@ -216,7 +215,7 @@ jobs:
216
215
apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
217
216
accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
218
217
projectName : ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
219
- directory : YOUR_BUILD_OUTPUT_DIRECTORY
218
+ directory : build
220
219
gitHubToken : ${{ secrets.GITHUB_TOKEN }}
221
220
workingDirectory : dev-packages/env-tests/cloudflare-astro
222
221
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export default defineConfig({
10
10
} ) ,
11
11
integrations : [
12
12
sentry ( {
13
- dsn : '' ,
13
+ dsn : process . env . E2E_TEST_DSN ,
14
14
autoInstrumentation : {
15
15
requestHandler : true ,
16
16
} ,
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"dev" : " astro dev" ,
8
8
"start" : " astro dev" ,
9
- "build" : " astro build" ,
9
+ "build" : " yarn build:bundle" ,
10
+ "build:bundle" : " astro build" ,
10
11
"preview" : " astro preview" ,
11
12
"astro" : " astro"
12
13
},
15
16
"@astrojs/cloudflare" : " ^8.0.2" ,
16
17
"@sentry/astro" : " 7.92.0" ,
17
18
"@sentry/profiling-node" : " ^1.3.2"
19
+ },
20
+ "volta" : {
21
+ "extends" : " ../../../package.json"
18
22
}
19
23
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments