Skip to content

✨ (Home) Update plural marking for 'n peoples in space' #19

✨ (Home) Update plural marking for 'n peoples in space'

✨ (Home) Update plural marking for 'n peoples in space' #19

Workflow file for this run

name: Deploy Flutter Web
on:
push:
branches:
- master
jobs:
build:
name: Build Web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Flutter action
id: flutter-action
uses: subosito/flutter-action@v2.7.0
with:
channel: "stable"
- name: Flutter info
run: |
echo channel=${{ steps.flutter-action.outputs.channel }} >> $GITHUB_STEP_SUMMARY
echo version=${{ steps.flutter-action.outputs.version }} >> $GITHUB_STEP_SUMMARY
echo architecture=${{ steps.flutter-action.outputs.architecture }} >> $GITHUB_STEP_SUMMARY
- name: Build for Web
run: |
flutter pub get
flutter build web
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/web # The folder the action should deploy.