Redo changes
All checks were successful
Pull Request Pipeline / Test (pull_request) Successful in 2m11s
Pull Request Pipeline / Lint (pull_request) Successful in 2m15s

This commit is contained in:
2026-01-18 14:22:00 +01:00
parent aa8471f891
commit 70750e076a
2 changed files with 12 additions and 23 deletions

View File

@@ -10,25 +10,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install jq
- name: Install Flutter (wget)
run: |
apt-get update
apt-get install -y jq
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.38.6
# - name: Install Flutter (wget)
# run: |
# wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz
# tar xf flutter_linux_3.38.2-stable.tar.xz
# # Set Git safe directory for Flutter path
# git config --global --add safe.directory "$(pwd)/flutter"
# # Set Flutter path
# echo "$(pwd)/flutter/bin" >> $GITEA_PATH
wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz
tar xf flutter_linux_3.38.2-stable.tar.xz
# Set Git safe directory for Flutter path
git config --global --add safe.directory "$(pwd)/flutter"
# Set Flutter path
echo "$(pwd)/flutter/bin" >> $GITEA_PATH
- name: Get dependencies
run: flutter pub get
@@ -49,12 +38,12 @@ jobs:
- name: Install Flutter (wget)
run: |
wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz
wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz
tar xf flutter_linux_3.38.2-stable.tar.xz
# Set Git safe directory for Flutter path
git config --global --add safe.directory "$(pwd)/flutter"
# Set Flutter path
echo "$(pwd)/flutter/bin" >> $GITHUB_PATH
echo "$(pwd)/flutter/bin" >> $GITEA_PATH
- name: Get dependencies
run: flutter pub get

View File

@@ -25,7 +25,7 @@ jobs:
# Set Git safe directory for Flutter path
git config --global --add safe.directory "$(pwd)/flutter"
# Set Flutter path
echo "$(pwd)/flutter/bin" >> $GITHUB_PATH
echo "$(pwd)/flutter/bin" >> $GITEA_PATH
- name: Get dependencies
run: flutter pub get
@@ -51,7 +51,7 @@ jobs:
# Set Git safe directory for Flutter path
git config --global --add safe.directory "$(pwd)/flutter"
# Set Flutter path
echo "$(pwd)/flutter/bin" >> $GITHUB_PATH
echo "$(pwd)/flutter/bin" >> $GITEA_PATH
- name: Get dependencies
run: flutter pub get
@@ -88,7 +88,7 @@ jobs:
Update-Version:
runs-on: ubuntu-latest
needs: Format
if: github.ref == 'refs/heads/development'
if: gitea.ref == 'refs/heads/development'
steps:
- name: Checkout code
uses: actions/checkout@v4