Skip to content

Commit

Permalink
fix: broken ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tjmaynes committed Jan 9, 2024
1 parent e1d2ac2 commit 4a3a79b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,6 +9,7 @@ jobs:
ship_it:
timeout-minutes: 60
runs-on: ubuntu-latest
environment: core
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -19,7 +20,7 @@ jobs:
- name: 🔨 Install Dependencies 🔨
run: sudo apt-get update && sudo apt-get install make
- name: 🚀 Deploy 🚀
run: make deploy
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: make deploy
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -12,7 +12,7 @@
"lint:fix": "next lint --fix .",
"lint:css": "stylelint --fix 'src/**/*.{css,scss}'",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:deploy": "wrangler pages deploy .vercel/output/static --commit-dirty=true",
"pages:deploy": "wrangler pages deploy .vercel/output/static --project-name='image-analyzer-app'",
"pages:watch": "next-on-pages --watch",
"pages:dev": "npm run pages:build && wrangler pages dev .vercel/output/static --compatibility-date=2023-10-30 --compatibility-flag=nodejs_compat --kv IMAGE_ANALYZER_KV"
},
Expand Down
6 changes: 3 additions & 3 deletions src/app/_components/BackgroundInfo.tsx
Expand Up @@ -16,9 +16,9 @@ const BackgroundInfo = () => (
Cloudflare KV
</a>
</strong>{' '}
(read-only database pairing &quot;image-classification&quot; to
&quot;image-description&quot;). I built this web application to learn how to
run maching learning models in web browsers. Please contact me on{' '}
(read-only database pairing &quot;image name&quot; to &quot;image
description&quot;). I built this web application to learn how to run maching
learning models in web browsers. Please contact me on{' '}
<a href="https://linkedin.com/in/tjmaynes">LinkedIn</a> for any feedback or
concerns. Enjoy! 😀
</p>
Expand Down

0 comments on commit 4a3a79b

Please sign in to comment.