fix: type in deploy script
All checks were successful
/ Build (push) Successful in 40s

This commit is contained in:
log101 2024-07-29 21:54:00 +03:00
parent 2456dcaccc
commit 4250cc42db
2 changed files with 8 additions and 5 deletions

View File

@ -53,7 +53,7 @@ jobs:
- name: Make envfile - name: Make envfile
uses: SpicyPizza/create-envfile@v2.0 uses: SpicyPizza/create-envfile@v2.0
with: with:
envkey_PUBLIC_BACKEND_HOST: ${{ vars.PUBLIC_BACKEND_URL }} envkey_PUBLIC_BACKEND_URL: ${{ vars.PUBLIC_BACKEND_URL }}
- name: Build with Astro - name: Build with Astro
run: | run: |
${{ steps.detect-package-manager.outputs.runner }} astro build ${{ steps.detect-package-manager.outputs.runner }} astro build

View File

@ -44,10 +44,13 @@ const handleSubmit = async (e: SubmitEvent) => {
const formData = new FormData(e.target as HTMLFormElement) const formData = new FormData(e.target as HTMLFormElement)
const res = await fetch(`https://konulukonum.log101.dev/api/location`, { const res = await fetch(
`${import.meta.env.PUBLIC_BACKEND_URL}/api/location`,
{
method: "POST", method: "POST",
body: formData, body: formData,
}) }
)
if (res.status === 200) { if (res.status === 200) {
const data = await res.json() const data = await res.json()