From 3fcdfca4e7976dfb7580d95529226f9407edf1db Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 5 Nov 2024 22:24:46 +0900 Subject: [PATCH] Added "Configuring Git" step --- .github/workflows/build_artifacts.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index 28a0731..8148536 100644 --- a/.github/workflows/build_artifacts.yml +++ b/.github/workflows/build_artifacts.yml @@ -44,6 +44,12 @@ jobs: with: submodules: 'true' + - name: Configuring Git + run: | + git config --global protocol.file.allow always + git config --global user.name "Rekku" + git config --global user.email "rekku@retrodeck.net" + - name: "Assembling manifest" if: ${{ inputs.DYNAMIC_MANIFEST == 'true' }} run: | @@ -66,10 +72,6 @@ jobs: - name: "Build flatpak" run: | - - # Configure Git - git config --global protocol.file.allow always - flatpak-builder --user --force-clean \ --install-deps-from=flathub \ --install-deps-from=flathub-beta \