diff options
author | Roman Lebedev <lebedev.ri@gmail.com> | 2025-09-18 02:20:32 +0300 |
---|---|---|
committer | Roman Lebedev <lebedev.ri@gmail.com> | 2025-09-18 02:22:27 +0300 |
commit | be615fc6d73ac045b5f985a996728b6d9187e83c (patch) | |
tree | 0a7a2887425e887eca8a641f91d135e63619151c | |
parent | 82ca9d4dfae40350604d63e281182b29e37d86b1 (diff) |
APT Readme: use different sentinels in nested cat blocks
Sorry about that...
Signed-off-by: Roman Lebedev <lebedev.ri@gmail.com>
-rw-r--r-- | .github/workflows/deb-publish.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/deb-publish.yml b/.github/workflows/deb-publish.yml index 9e1713e1..5a341d8d 100644 --- a/.github/workflows/deb-publish.yml +++ b/.github/workflows/deb-publish.yml @@ -137,13 +137,13 @@ jobs: REPO_ROOT="$MOUNTPOINT/public_html" mkdir -p "$REPO_ROOT" cp -f /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc "$REPO_ROOT" - cat > "$REPO_ROOT/README.txt" <<EOF + cat > "$REPO_ROOT/README.txt" <<EOR To add this repository to your computer, do: wget -qO- https://apt.bcachefs.org/apt.bcachefs.org.asc | sudo tee /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc # Fingerprint: ${{ secrets.GPG_SIGNING_SUBKEY_FINGERPRINT }} - sudo cat > "/etc/apt/sources.list.d/apt.bcachefs.org.sources" <<EOF + sudo cat > "/etc/apt/sources.list.d/apt.bcachefs.org.sources" <<EOS Types: deb deb-src URIs: https://apt.bcachefs.org/unstable/ # Or replace unstable with your distro's release name @@ -152,7 +152,7 @@ jobs: # Suites: bcachefs-tools-release Components: main Signed-By: /etc/apt/trusted.gpg.d/apt.bcachefs.org.asc - EOF + EOS sudo apt update sudo apt install bcachefs-tools @@ -168,7 +168,7 @@ jobs: https://wiki.debian.org/DebianRepository/UseThirdParty Source, Debian tarballs and dsc files can be verified using https://github.com/sigstore/rekor. - EOF + EOR cd "$GITHUB_WORKSPACE/bin-artifacts" for DIST in * do |