Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Update README.md

Update README.md #22

Workflow file for this run

name: Deploy Web App
on:
push:
branches:
- master
jobs:
web-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out current repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Build Web App
run: flutter build web
working-directory: packages/khalti_flutter/example
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/khalti_flutter/example/build/web