Skip to content

Commit

Permalink
ci: Add flutter-pub-update.yml to 2.1 branch as well
Browse files Browse the repository at this point in the history
Due to a GH limitation, scheduled workflows only run on the
default branch
  • Loading branch information
iamsergio committed Apr 22, 2024
1 parent fe17c73 commit 90044b7
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/flutter-pub-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# SPDX-FileCopyrightText: 2024 Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]>
#
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only

# On demand flutter action to trigger flutter pub upgrade

name: (Scheduled) Runs flutter pub upgrade

on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true

steps:
- name: Checkout sources
uses: actions/checkout@v4
ref: main # always main branch

- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install wget curl file unzip zip xz-utils -y
- name: Install Dart SDK
uses: dart-lang/setup-dart@v1

- name: Setup git author name
uses: fregante/setup-git-user@v2

- name: pub upgrade on flutter_tests_embedder
run: |
cd tests/flutter_tests_embedder/
flutter pub upgrade
- name: pub upgrade on flutter_tests_embedder
run: |
cd tests/flutter_tests_embedder/
flutter pub upgrade --major-versions
- name: pub upgrade on examples
run: |
cd examples/flutter
flutter pub upgrade --major-versions
- name: pub upgrade on src/flutter
run: |
cd src/flutter
flutter pub upgrade --major-versions
- name: pub upgrade on src/flutter/dart
run: |
cd src/flutter/dart
flutter pub upgrade --major-versions
- name: Create PR
run: sh src/flutter/create_pub_upgrade_pr.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 90044b7

Please sign in to comment.