@@ -35,42 +35,42 @@ jobs:
35
35
- if : steps.cache-data.outputs.cache-hit == 'true'
36
36
run : find docs/.observablehq/cache examples/*/docs/.observablehq/cache -type f -exec touch {} +
37
37
- run : yarn build
38
- - name : Build example "api"
39
- run : yarn --frozen-lockfile && yarn build
40
- working-directory : examples/api
41
- - name : Build example "chess"
42
- run : yarn --frozen-lockfile && yarn build
43
- working-directory : examples/chess
44
- - name : Build example "eia"
45
- run : yarn --frozen-lockfile && yarn build
46
- working-directory : examples/eia
47
- env :
48
- EIA_KEY : ${{ secrets.EIA_KEY }}
49
- - name : Build example "google-analytics"
50
- run : yarn --frozen-lockfile && yarn build
51
- working-directory : examples/google-analytics
52
- env :
53
- GA_PROPERTY_ID : ${{ vars.GA_PROPERTY_ID }}
54
- GA_CLIENT_EMAIL : ${{ secrets.GA_CLIENT_EMAIL }}
55
- GA_PRIVATE_KEY : ${{ secrets.GA_PRIVATE_KEY }}
56
- - name : Build example "hello-world"
57
- run : yarn --frozen-lockfile && yarn build
58
- working-directory : examples/hello-world
59
- - name : Build example "mortgage-rates"
60
- run : yarn --frozen-lockfile && yarn build
61
- working-directory : examples/mortgage-rates
62
- - name : Build example "penguin-classification"
63
- run : |
64
- python -m pip install --upgrade pip
65
- pip install -r requirements.txt
66
- yarn --frozen-lockfile && yarn build
67
- working-directory : examples/penguin-classification
68
- - name : Build example "plot"
69
- run : yarn --frozen-lockfile && yarn build
70
- working-directory : examples/plot
71
- env :
72
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
73
- - run : mkdir dist/examples && for i in examples/*; do if [ -d $i/dist ]; then mv -v $i/dist dist/examples/$(basename $i); fi; done
38
+ # - name: Build example "api"
39
+ # run: yarn --frozen-lockfile && yarn build
40
+ # working-directory: examples/api
41
+ # - name: Build example "chess"
42
+ # run: yarn --frozen-lockfile && yarn build
43
+ # working-directory: examples/chess
44
+ # - name: Build example "eia"
45
+ # run: yarn --frozen-lockfile && yarn build
46
+ # working-directory: examples/eia
47
+ # env:
48
+ # EIA_KEY: ${{ secrets.EIA_KEY }}
49
+ # - name: Build example "google-analytics"
50
+ # run: yarn --frozen-lockfile && yarn build
51
+ # working-directory: examples/google-analytics
52
+ # env:
53
+ # GA_PROPERTY_ID: ${{ vars.GA_PROPERTY_ID }}
54
+ # GA_CLIENT_EMAIL: ${{ secrets.GA_CLIENT_EMAIL }}
55
+ # GA_PRIVATE_KEY: ${{ secrets.GA_PRIVATE_KEY }}
56
+ # - name: Build example "hello-world"
57
+ # run: yarn --frozen-lockfile && yarn build
58
+ # working-directory: examples/hello-world
59
+ # - name: Build example "mortgage-rates"
60
+ # run: yarn --frozen-lockfile && yarn build
61
+ # working-directory: examples/mortgage-rates
62
+ # - name: Build example "penguin-classification"
63
+ # run: |
64
+ # python -m pip install --upgrade pip
65
+ # pip install -r requirements.txt
66
+ # yarn --frozen-lockfile && yarn build
67
+ # working-directory: examples/penguin-classification
68
+ # - name: Build example "plot"
69
+ # run: yarn --frozen-lockfile && yarn build
70
+ # working-directory: examples/plot
71
+ # env:
72
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
+ # - run: mkdir dist/examples && for i in examples/*; do if [ -d $i/dist ]; then mv -v $i/dist dist/examples/$(basename $i); fi; done
74
74
- uses : cloudflare/pages-action@1
75
75
with :
76
76
apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
0 commit comments