Skip to content

Commit

Permalink
Create flutter_web.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rafay99-epic committed Feb 20, 2024
1 parent 6b67903 commit 85b5d98
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/flutter_web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Flutter Web Deploy

on:
push:
branches:
- main # Adjust the branch name if needed

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable

- name: Install Dependencies
run: flutter pub get

- name: Build Flutter Web
run: flutter build web


- name: Create Deployed Branch
run: |
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
git checkout -b flutter-web-deployed
git add -f build/
git commit -m "Deploy Flutter Web"
git push origin HEAD:refs/heads/flutter-web-deployed

0 comments on commit 85b5d98

Please sign in to comment.