Remove Flutter build steps and update app location paths in Azure Static Web Apps workflow

This commit is contained in:
faris Aljohari
2024-08-25 13:06:35 +03:00
parent 1ced4f846a
commit c9bb32f369

View File

@ -19,18 +19,6 @@ jobs:
with: with:
submodules: true submodules: true
lfs: false lfs: false
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.0' # Use the appropriate Flutter version
- name: Install dependencies
run: flutter pub get
- name: Build Flutter web app
run: flutter build web --release
- name: Build And Deploy - name: Build And Deploy
id: builddeploy id: builddeploy
uses: Azure/static-web-apps-deploy@v1 uses: Azure/static-web-apps-deploy@v1
@ -40,9 +28,9 @@ jobs:
action: "upload" action: "upload"
###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### ###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "web" # App source code path app_location: "/web" # App source code path
api_location: "" # Api source code path - optional api_location: "" # Api source code path - optional
output_location: "build/web" # Built app content directory output_location: "/web/build" # Built app content directory - optional
###### End of Repository/Build Configurations ###### ###### End of Repository/Build Configurations ######
close_pull_request_job: close_pull_request_job: