Skip to content

Commit

Permalink
Update Flutter web workflow to use latest versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TechAurelian committed Apr 17, 2024
1 parent 7ced52c commit 5a2a0d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-flutter-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v2
with:
channel: stable
version: 3.3.7
version: 3.19.5
- name: Clean
run: flutter clean
- name: Pub Get
Expand All @@ -36,11 +36,11 @@ jobs:
run: flutter build web

- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: './build/web'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 5a2a0d6

Please sign in to comment.