Skip to content

Commit 3fdf917

Browse files
committed
maybe fix actions?
1 parent 669c01e commit 3fdf917

5 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/build_android.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55

66
jobs:
77
build:
8+
env:
9+
PUB_CACHE: ${{ github.workspace }}/.pub-cache
810
runs-on: ubuntu-latest
911
steps:
1012
- name: Clone repository
@@ -25,7 +27,7 @@ jobs:
2527
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path
2628
pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache of dart pub get dependencies
2729
pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path
28-
- run: flutter doctor
30+
#- run: flutter doctor
2931
- name: Setup Java
3032
uses: actions/setup-java@v3
3133
with:

.github/workflows/build_linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55

66
jobs:
77
build:
8+
env:
9+
PUB_CACHE: ${{ github.workspace }}/.pub-cache
810
runs-on: ubuntu-latest
911
steps:
1012
- name: Clone repository

.github/workflows/build_web.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77

88
jobs:
99
build:
10+
env:
11+
PUB_CACHE: ${{ github.workspace }}/.pub-cache
1012
runs-on: ubuntu-latest
1113
steps:
1214
- name: Clone repository

.github/workflows/build_windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ on:
1414

1515
jobs:
1616
build-windows:
17+
env:
18+
PUB_CACHE: ${{ github.workspace }}/.pub-cache
1719
name: Build for Windows
1820
runs-on: windows-latest
1921
permissions:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88

99
jobs:
1010
build:
11+
env:
12+
PUB_CACHE: ${{ github.workspace }}/.pub-cache
1113
runs-on: ubuntu-latest
1214
steps:
1315
- name: Clone repository

0 commit comments

Comments
 (0)