Skip to content

Update Telegram bot service to extend handler timeout to 30 minutes, … #7

Update Telegram bot service to extend handler timeout to 30 minutes, …

Update Telegram bot service to extend handler timeout to 30 minutes, … #7

Workflow file for this run

name: Deploy demo to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- master
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build shared package
run: npm run build -w shared
- name: Build client (demo, GitHub Pages base)
env:
VITE_DEMO: 'true'
run: npm run build -w client -- --base /${{ github.event.repository.name }}/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: client/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deploy
uses: actions/deploy-pages@v4