mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
24 lines
507 B
YAML
24 lines
507 B
YAML
name: Clear Flutter Cache
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
clear:
|
|
name: Clear Cache
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: generate Unique Key
|
|
run: echo CACHE_KEY=key-$(date +%s) >> $GITHUB_ENV
|
|
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: beta
|
|
cache: true
|
|
cache-key: ${{ env.CACHE_KEY }}
|
|
|
|
- name: Flutter Doctor
|
|
working-directory: ${{ github.workspace }}
|
|
run: flutter doctor -v
|