remove caching

This commit is contained in:
Hiddify
2023-09-06 20:05:29 +00:00
parent 35866beaa0
commit 17a9076ef4

View File

@@ -62,26 +62,26 @@ jobs:
- name: checkout - name: checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Cache Flutter dependencies # - name: Cache Flutter dependencies
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: | # path: |
~/.pub-cache # ~/.pub-cache
~/.gradle/caches # ~/.gradle/caches
~/.gradle/wrapper # ~/.gradle/wrapper
~/.npm # ~/.npm
~/.cache # ~/.cache
~/go/pkg/mod # ~/go/pkg/mod
key: ${{ runner.os }}-pub-cache-${{ hashFiles('**/pubspec.lock') }} # key: ${{ runner.os }}-pub-cache-${{ hashFiles('**/pubspec.lock') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-pub-cache- # ${{ runner.os }}-pub-cache-
- name: Setup Flutter - name: Setup Flutter
uses: subosito/flutter-action@v2 uses: subosito/flutter-action@v2
with: with:
flutter-version: '3.13.x' # flutter-version: '3.13.x'
channel: 'stable' channel: 'stable'
cache: true # cache: true
- name: Build macos dmg - name: Build macos dmg
if: matrix.platform == 'macos' || matrix.platform == 'ios' if: matrix.platform == 'macos' || matrix.platform == 'ios'
@@ -217,16 +217,16 @@ jobs:
prerelease: true prerelease: true
overwrite: true overwrite: true
- name: Create service_account.json # - name: Create service_account.json
if: matrix.platform == 'android' # if: matrix.platform == 'android'
run: echo '${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}' > service_account.json # run: echo '${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}' > service_account.json
- name: Deploy to Internal Testers # - name: Deploy to Internal Testers
if: matrix.platform == 'android' # if: matrix.platform == 'android'
uses: r0adkll/upload-google-play@v1 # uses: r0adkll/upload-google-play@v1
with: # with:
serviceAccountJson: service_account.json # serviceAccountJson: service_account.json
packageName: app.hiddify.com # packageName: app.hiddify.com
releaseName: ${{ github.ref }} # releaseName: ${{ github.ref }}
releaseFiles: ./build/app/outputs/bundle/release/app-release.aab # releaseFiles: ./build/app/outputs/bundle/release/app-release.aab
track: internal # track: internal