Browse Source

add missing package

main
Nicolas Massé 1 week ago
parent
commit
d7c309784a
  1. 2
      .github/workflows/backport.yaml
  2. 2
      .github/workflows/copr-build.yaml
  3. 5
      .github/workflows/rawhide-backport.yaml
  4. 5
      .github/workflows/rawhide-copr-build.yaml

2
.github/workflows/backport.yaml

@ -18,7 +18,7 @@ jobs:
steps:
# 1. Install pre-requisites
- name: Install pre-requisites
run: dnf install -y patch git git-lfs
run: dnf install -y patch git git-lfs jq
# 2. Checkout the repository
- name: Checkout repository

2
.github/workflows/copr-build.yaml

@ -24,7 +24,7 @@ jobs:
steps:
# 1. Install pre-requisites
- name: Install copr-cli
run: dnf install -y copr-cli git git-lfs
run: dnf install -y copr-cli git git-lfs jq
# 2. Checkout the repository
- name: Checkout repository

5
.github/workflows/rawhide-backport.yaml

@ -18,7 +18,7 @@ jobs:
steps:
# 1. Install pre-requisites
- name: Install pre-requisites
run: dnf install -y patch git git-lfs
run: dnf install -y patch git git-lfs jq
# 2. Checkout the repository
- name: Checkout repository
@ -35,10 +35,7 @@ jobs:
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# 3. Run the update script for Fedora Rawhide only.
# Rawhide moves fast and can break at any time, so this step is best-effort:
# a failure here must not fail the whole workflow.
- name: Run update script for Fedora Rawhide (best effort)
continue-on-error: true
run: ./update.sh fedora-rawhide
# 4. Push changes (if any)

5
.github/workflows/rawhide-copr-build.yaml

@ -21,7 +21,7 @@ jobs:
steps:
# 1. Install copr-cli
- name: Install copr-cli
run: dnf install -y copr-cli git git-lfs
run: dnf install -y copr-cli git git-lfs jq
# 2. Checkout the repository
- name: Checkout repository
@ -31,10 +31,7 @@ jobs:
lfs: true
# 3. Run the build script for Fedora Rawhide only.
# Rawhide moves fast and can break at any time, so this step is best-effort:
# a failure here must not fail the whole workflow.
- name: Run COPR build script for Fedora Rawhide (best effort)
continue-on-error: true
run: ./build.sh fedora-rawhide
# Inject secrets into the container as environment variables
env:

Loading…
Cancel
Save