Skip to content

Commit

Permalink
fix: examples directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jaanphare committed Apr 7, 2024
1 parent 1d0dbeb commit d77bf87
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
cache: 'yarn'
cache-dependency-path: |
yarn.lock
'examples/*/yarn.lock'
- run: yarn --frozen-lockfile
- id: date
run: echo "date=$(TZ=America/Los_Angeles date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
Expand All @@ -31,10 +30,9 @@ jobs:
with:
path: |
docs/.observablehq/cache
examples/*/docs/.observablehq/cache
key: data-${{ hashFiles('docs/data/*', 'examples/*/docs/data/*') }}-${{ steps.date.outputs.date }}
key: data-${{ hashFiles('docs/data/*') }}-${{ steps.date.outputs.date }}
- if: steps.cache-data.outputs.cache-hit == 'true'
run: find docs/.observablehq/cache examples/*/docs/.observablehq/cache -type f -exec touch {} +
run: find docs/.observablehq/cache -type f -exec touch {} +
- run: yarn build
# - name: Build example "api"
# run: yarn --frozen-lockfile && yarn build
Expand Down

0 comments on commit d77bf87

Please sign in to comment.