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

Remove dev channel mentions #133

Merged
merged 1 commit into from Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
channel: [stable, beta, dev]
channel: [stable, beta]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -23,7 +23,7 @@ steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: 'stable' # or: 'beta', 'dev' or 'master'
channel: 'stable' # or: 'beta' or 'master'
- run: flutter --version
```

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: beta
channel: 'beta'
- run: flutter config --enable-windows-desktop
- run: flutter build windows
```
Expand All @@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: beta
channel: 'beta'
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
Expand All @@ -141,7 +141,7 @@ jobs:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: beta
channel: 'beta'
- run: flutter config --enable-macos-desktop
- run: flutter build macos
```
Expand All @@ -154,7 +154,7 @@ steps:
- uses: subosito/flutter-action@v2
with:
flutter-version: 2.5.0
channel: stable
channel: 'stable'
cache: true
cache-key: flutter # optional, change this to force refresh cache
cache-path: ${{ runner.tool_cache }}/flutter # optional, change this to specify the cache path
Expand Down