fix search query #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: deployment from main branch | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '*.md' | |
| workflow_dispatch: | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: true | |
| - name: Fetch tags | |
| run: git fetch --tags --force | |
| - name: Compute diff since last deploy (database/scripts only) | |
| id: diff | |
| run: | | |
| if git rev-parse deploy-prod >/dev/null 2>&1; then | |
| if git diff --quiet deploy-prod...HEAD -- database/ scripts/; then | |
| echo "db_changed=false" >> $GITHUB_OUTPUT | |
| echo "No changes in database" | |
| else | |
| echo "db_changed=true" >> $GITHUB_OUTPUT | |
| echo "Changes detected in database" | |
| fi | |
| else | |
| echo "db_changed=true" >> $GITHUB_OUTPUT | |
| echo "No deploy-prod tag found" | |
| fi | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24.14.0 | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm i | |
| - name: Generate SvelteKit config | |
| run: pnpm svelte-kit sync | |
| - name: Update database | |
| if: steps.diff.outputs.db_changed == 'true' | |
| env: | |
| DB_URL: ${{ secrets.DB_URL }} | |
| DB_AUTH_TOKEN: ${{ secrets.DB_AUTH_TOKEN }} | |
| LOG_DETAILS: ${{ vars.LOG_DETAILS }} | |
| run: pnpm db:update | |
| - name: Build app | |
| env: | |
| DB_URL: ${{ secrets.DB_URL }} | |
| DB_AUTH_TOKEN: ${{ secrets.DB_AUTH_TOKEN }} | |
| DB_HTTP_URL: ${{ secrets.DB_HTTP_URL }} | |
| DB_AUTH_TOKEN_HTTP: ${{ secrets.DB_AUTH_TOKEN_HTTP }} | |
| INTERNAL_API_KEY: ${{ secrets.INTERNAL_API_KEY }} | |
| run: pnpm build | |
| - name: Deploy to Netlify | |
| run: | | |
| pnpm exec netlify deploy --no-build \ | |
| --dir build \ | |
| --site ${{ secrets.NETLIFY_SITE_ID }} \ | |
| --auth ${{ secrets.NETLIFY_ACCESS_TOKEN }} \ | |
| --message "${{ github.event.head_commit.message }}" \ | |
| --prod | |
| - name: Update deploy tag | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git tag -f deploy-prod $GITHUB_SHA | |
| git push --no-verify origin refs/tags/deploy-prod --force |