Skip to content

Commit

Permalink
Fix nitpicks
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Jul 1, 2024
1 parent 053212e commit 551214b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/o2-full-deps.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# Create repositories with all O2 prerequisites plus aliBuild and push them
# upstream (e.g. to S3).
name: Build o2-full-deps repositories
name: "Build o2-full-deps repositories"

# Controls when the action will run. This workflow is triggered manually.
"on":
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
container: fedora:33
alibuild_tag: v1.16.1

name: RPM (${{ matrix.el_version }})
name: "RPM (${{ matrix.el_version }})"
container: ${{ matrix.container }}
env:
ALIBUILD_TAG: ${{ matrix.alibuild_tag }}
Expand All @@ -48,7 +48,7 @@ jobs:
# For rpms/*.spec
- uses: actions/checkout@v3

- name: Install prerequisites
- name: "Install prerequisites"
run: |
set -x
yum clean all
Expand All @@ -59,7 +59,7 @@ jobs:
${{ secrets.S3_RCLONE_CONFIG }}
EOF
- name: Build the ${{ matrix.el_version }} RPM and create a yum repo
- name: "Build the ${{ matrix.el_version }} RPM and create a yum repo"
run: |

Check failure on line 63 in .github/workflows/o2-full-deps.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2046:warning:10:47: Quote this to prevent word splitting ``` run: | ^~~~ ```

Check failure on line 63 in .github/workflows/o2-full-deps.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2046:warning:11:21: Quote this to prevent word splitting ``` run: | ^~~~ ```

Check failure on line 63 in .github/workflows/o2-full-deps.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2046:warning:10:47: Quote this to prevent word splitting ``` run: | ^~~~ ```

Check failure on line 63 in .github/workflows/o2-full-deps.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2046:warning:11:21: Quote this to prevent word splitting ``` run: | ^~~~ ```
set -x
rpmbuild -ba "rpms/o2-prereq-$DISTRO.spec"
Expand Down Expand Up @@ -101,15 +101,15 @@ jobs:
DEBIAN_FRONTEND: noninteractive

steps:
- name: Install prerequisites
- name: "Install prerequisites"
run: |
apt update
apt install -y vim git devscripts build-essential lintian debhelper dh-python python3-all python3-setuptools python3-setuptools-scm
gpg --import - <<\EOF
${{ secrets.LAUNCHPAD_PPA_GPG_KEY }}
EOF
- name: Build a DEB for Ubuntu and push it to the PPA
- name: "Build a DEB for Ubuntu and push it to the PPA"
run: |
set -x
git clone -b "$ALIBUILD_TAG" https://github.com/alisw/alibuild
Expand Down

0 comments on commit 551214b

Please sign in to comment.