From 620ee53e417eb24862fd4e7d00d7a584cd2279b4 Mon Sep 17 00:00:00 2001 From: Lucas SAUDON Date: Thu, 4 Jul 2024 11:18:21 +0200 Subject: [PATCH] chore: Update continuous delivery workflow to use Ubuntu instead of macOS --- .github/workflows/example_launch_cd.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/example_launch_cd.yaml b/.github/workflows/example_launch_cd.yaml index 66abc9c..9c88e5b 100644 --- a/.github/workflows/example_launch_cd.yaml +++ b/.github/workflows/example_launch_cd.yaml @@ -3,20 +3,16 @@ name: launch-continuous-delivery on: workflow_dispatch -env: - FLUTTER_VERSION: 3.22.2 - jobs: continuous-delivery-ios: - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: subosito/flutter-action@v2 + - uses: dart-lang/setup-dart@v1 with: - cache: true - channel: stable - flutter-version: ${{ env.FLUTTER_VERSION }} + sdk: "stable" - run: | dart pub global activate --source=path . cd example releascribe_cli release + cat pubspec.yaml