Skip to content

fix: db unsupported module #10

fix: db unsupported module

fix: db unsupported module #10

Workflow file for this run

name: Production CI
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
Telegram:
runs-on: ubuntu-latest
needs: Deploy-Production
steps:
- name: Get Secret Token
id: get_secret_token
run: |
response=$(curl -X GET https://bot.himarpl.com/api/telegram/secretToken \
-H "x-telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}" \
-H "x-telegram-bot-username: ${{ secrets.TELEGRAM_BOT_USERNAME }}" \
-H "Content-type: application/json")
secretToken=$(echo "$response" | jq -r '.result.secretToken')
echo "SECRET_TOKEN=${secretToken}" >> $GITHUB_ENV
- name: Set Telegram Webhook
run: |
curl -X POST https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/setWebhook \
-H "Content-type: application/json" \
-d '{"url": "${{ secrets.TELEGRAM_BOT_WEBHOOK_URL }}", "secret_token": "'$SECRET_TOKEN'"}'