Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚜 Fix CI. Delete env section #29

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ on:
branches:
- main

env:
JAVA_VERSION: '11'
FLUTTER_CHANNEL: 'stable' # 'dev', 'alpha', default to: 'stable'
FLUTTER_VERSION: '3.13.7'

jobs:
analyze:
name: 🔎 Run analyzer and formatter
Expand All @@ -24,7 +19,7 @@ jobs:
uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
flutter-version: ${{ vars.FLUTTER_VERSION }}
cache: true

- name: ⬇️ Import files
Expand Down Expand Up @@ -62,14 +57,14 @@ jobs:
os: ubuntu-latest
build-args: 'apk'
# build-args: 'apk --split-per-abi'
java-version: ${{ env.JAVA_VERSION }}
java-version: ${{ vars.JAVA_VERSION }}

steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
flutter-version: ${{ vars.FLUTTER_VERSION }}
cache: true

- name: ⬇️ Download Android keystore
Expand Down