From 2b642700fdf296ce850d2b43b35c8f0456387dc7 Mon Sep 17 00:00:00 2001 From: Steffen Kleinle Date: Fri, 21 Feb 2025 17:49:50 +0100 Subject: [PATCH] Fix iOS CI and trigger pipeline script --- .circleci/config.yml | 2 +- .circleci/src/commands/install_flutter.yml | 2 +- tools/trigger-pipeline.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 88a9a11a..28704641 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -84,7 +84,7 @@ commands: command: curl -fsSL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | bash name: Install FVM - run: - command: curl -sL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | sha256sum + command: curl -sL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | shasum -a 256 name: FVM Install Script Checksum - restore_cache: keys: diff --git a/.circleci/src/commands/install_flutter.yml b/.circleci/src/commands/install_flutter.yml index 606f81fb..7a617070 100644 --- a/.circleci/src/commands/install_flutter.yml +++ b/.circleci/src/commands/install_flutter.yml @@ -9,7 +9,7 @@ steps: command: curl -fsSL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | bash - run: name: FVM Install Script Checksum - command: curl -sL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | sha256sum + command: curl -sL https://raw.githubusercontent.com/leoafarias/fvm/refs/heads/main/scripts/install.sh | shasum -a 256 - restore_cache: keys: - v1-fvm-{{ arch }}-{{ checksum ".fvmrc" }}-{{ checksum "pubspec.yaml" }}-{{ checksum "pubspec.lock" }} diff --git a/tools/trigger-pipeline.ts b/tools/trigger-pipeline.ts index a32393bc..99ab5668 100644 --- a/tools/trigger-pipeline.ts +++ b/tools/trigger-pipeline.ts @@ -3,7 +3,7 @@ import fetch from 'node-fetch' import { MAIN_BRANCH } from './constants.js' -const CIRCLECI_URL = 'https://circleci.com/api/v2/project/github/verdigado/gruene_app/pipeline' +const CIRCLECI_URL = 'https://circleci.com/api/v2/project/github/verdigado/gruene-app/pipeline' const WORKFLOW_TYPES = [ 'none', 'beta_delivery',