From ccd6d2300a04d93fe00ae841579d1dc5829c7181 Mon Sep 17 00:00:00 2001 From: Luke Knoble Date: Wed, 14 Feb 2024 10:38:39 -0500 Subject: [PATCH] add workflow to deploy web --- .github/workflows/deploy-web-to-gh-pages.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/deploy-web-to-gh-pages.yml diff --git a/.github/workflows/deploy-web-to-gh-pages.yml b/.github/workflows/deploy-web-to-gh-pages.yml new file mode 100644 index 0000000..e088784 --- /dev/null +++ b/.github/workflows/deploy-web-to-gh-pages.yml @@ -0,0 +1,15 @@ +name: Gh-Pages + +on: + push: + branches: [ dev ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 # Only works with v2 + - uses: subosito/flutter-action@v1 + - uses: bluefireteam/flutter-gh-pages@v7 + \ No newline at end of file