mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
21 lines
411 B
YAML
21 lines
411 B
YAML
name: Clear Flutter Cache
|
|
|
|
on:
|
|
workflow_dispatch
|
|
|
|
jobs:
|
|
clear:
|
|
name: Clear Cache
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
cache: true
|
|
cache-key: ${{ github.sha }}
|
|
|
|
- name: Flutter Doctor
|
|
working-directory: ${{ github.workspace }}
|
|
run: flutter doctor -v
|