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