From 0fb60217dfb76888616f2d474ef09191f0f05e61 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Tue, 17 Jun 2025 21:48:29 +0200 Subject: [PATCH] Checkout the different repos to different paths --- .github/workflows/build-linux.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 69c73abc..08114d87 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -51,16 +51,23 @@ jobs: needs: - build_linux steps: + - name: Checkout application + uses: actions/checkout@v4 + with: + path: main + - name: Common setup - uses: ./.github/actions/flutter-common + uses: ./main/.github/actions/flutter-common - name: Checkout application uses: actions/checkout@v4 with: repository: wger-project/de.wger.flutter + path: flathub - name: Bump version and update manifest run: | + cd flathub pip install pyyaml toml git clone https://github.com/TheAppgineer/flatpak-flutter.git --branch 0.6.1 ../flatpak-flutter python bump-wger-version.py ${{ inputs.ref }} @@ -71,6 +78,7 @@ jobs: env: SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} with: + source-directory: flathub destination-github-username: wger-project destination-repository-name: de.wger.flutter user-email: github-actions@github.com