From 58ceff36c38ee0e1726037af508ad4454358cccb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Fri, 31 Oct 2025 11:51:10 +0100 Subject: [PATCH] wip --- .github/workflows/backport.yaml | 10 +++++----- .github/workflows/copr-build.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index ab8c567..a63f72a 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -20,14 +20,14 @@ jobs: image: fedora:latest steps: - # 1. Checkout the repository - - name: Checkout repository - uses: actions/checkout@v4 - - # 2. Install pre-requisites + # 1. Install pre-requisites - name: Install pre-requisites run: dnf install -y patch git + # 2. Checkout the repository + - name: Checkout repository + uses: actions/checkout@v4 + # 3. Run the update script in the container - name: Run update script run: ./update.sh diff --git a/.github/workflows/copr-build.yaml b/.github/workflows/copr-build.yaml index 023b1b7..6e1b68b 100644 --- a/.github/workflows/copr-build.yaml +++ b/.github/workflows/copr-build.yaml @@ -17,14 +17,14 @@ jobs: image: fedora:latest steps: - # 1. Checkout the repository + # 1. Install pre-requisites + - name: Install copr-cli + run: dnf install -y copr-cli git + + # 2. Checkout the repository - name: Checkout repository uses: actions/checkout@v4 - # 2. Install the 'copr-cli' dependency - - name: Install copr-cli - run: dnf install -y copr-cli - # 3. Run the build script - name: Run COPR build script run: ./build.sh