Skip to content

Improve UI rendering, look of the pT border (#6) #3

Improve UI rendering, look of the pT border (#6)

Improve UI rendering, look of the pT border (#6) #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
# Deploy to the github-pages environment
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Build web app
run: flutter build web --base-href /picotracker_client/
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: build/web/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2