Skip to content

Commit

Permalink
ci: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisL61 committed Nov 11, 2024
1 parent c447f09 commit 00098bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.6'
flutter-version: '3.24.3'
channel: 'stable'
- name: Build windows
working-directory: ./games_richpresence
run: flutter build windows --build-name ${{ needs.retrievingVersion.outputs.version }}
run: flutter build windows -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_windows
Expand All @@ -53,11 +53,11 @@ jobs:
sudo apt-get install -y ninja-build libgtk-3-dev
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.6'
flutter-version: '3.24.3'
channel: 'stable'
- name: Build linux
working-directory: ./games_richpresence
run: flutter build linux --build-name ${{ needs.retrievingVersion.outputs.version }}
run: flutter build linux -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_linux
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.6'
flutter-version: '3.24.3'
channel: 'stable'
- name: Build windows
working-directory: ./games_richpresence
run: flutter build windows --build-name ${{ needs.retrievingVersion.outputs.version }}
run: flutter build windows --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_windows
Expand All @@ -53,11 +53,11 @@ jobs:
sudo apt-get install -y ninja-build libgtk-3-dev
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.6'
flutter-version: '3.24.3'
channel: 'stable'
- name: Build linux
working-directory: ./games_richpresence
run: flutter build linux --build-name ${{ needs.retrievingVersion.outputs.version }}
run: flutter build linux --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_linux
Expand Down

0 comments on commit 00098bc

Please sign in to comment.